From b4951bfea367eef551b053e9f0240d717c353c11 Mon Sep 17 00:00:00 2001 From: Beni Cherniavsky-Paskin Date: Tue, 12 Aug 2014 19:32:51 +0300 Subject: [PATCH] Add -a/--list-full to --help output. --- pgrep.c | 1 + 1 file changed, 1 insertion(+) diff --git a/pgrep.c b/pgrep.c index 0a43f56a..03767799 100644 --- a/pgrep.c +++ b/pgrep.c @@ -106,6 +106,7 @@ static int __attribute__ ((__noreturn__)) usage(int opt) if (i_am_pkill == 0) { fputs(_(" -d, --delimiter specify output delimiter\n"),fp); fputs(_(" -l, --list-name list PID and process name\n"),fp); + fputs(_(" -a, --list-full list PID and full command line\n"),fp); fputs(_(" -v, --inverse negates the matching\n"),fp); fputs(_(" -w, --lightweight list all TID\n"), fp); }