diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-08-19 18:25:02 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-08-19 18:25:02 +0000 |
commit | b131db43261ed8f89537ec7a246b1b274da8539b (patch) | |
tree | 1e4318a8e0e0ff51c79536d242ca5226ea1ca3c5 | |
parent | cb01bb1d6876edbcff428b75f110ba1b237e08d9 (diff) | |
download | busybox-b131db43261ed8f89537ec7a246b1b274da8539b.tar.gz |
Patch from Tito documenting the '-q' option
-rw-r--r-- | include/usage.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/usage.h b/include/usage.h index c92c80ab0..a0b812a4a 100644 --- a/include/usage.h +++ b/include/usage.h @@ -1371,11 +1371,12 @@ "$ kill 252\n" #define killall_trivial_usage \ - "[-signal] process-name [process-name ...]" + "[-q] [-signal] process-name [process-name ...]" #define killall_full_usage \ "Send a signal (default is SIGTERM) to the specified process(es).\n\n"\ "Options:\n" \ - "\t-l\tList all signal names and numbers." + "\t-l\tList all signal names and numbers.\n"\ + "\t-q\tDo not complain if no processes were killed." #define killall_example_usage \ "$ killall apache\n" |