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-w32-b131db43261ed8f89537ec7a246b1b274da8539b.tar.gz busybox-w32-b131db43261ed8f89537ec7a246b1b274da8539b.tar.bz2 busybox-w32-b131db43261ed8f89537ec7a246b1b274da8539b.zip |
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 @@ | |||
1371 | "$ kill 252\n" | 1371 | "$ kill 252\n" |
1372 | 1372 | ||
1373 | #define killall_trivial_usage \ | 1373 | #define killall_trivial_usage \ |
1374 | "[-signal] process-name [process-name ...]" | 1374 | "[-q] [-signal] process-name [process-name ...]" |
1375 | #define killall_full_usage \ | 1375 | #define killall_full_usage \ |
1376 | "Send a signal (default is SIGTERM) to the specified process(es).\n\n"\ | 1376 | "Send a signal (default is SIGTERM) to the specified process(es).\n\n"\ |
1377 | "Options:\n" \ | 1377 | "Options:\n" \ |
1378 | "\t-l\tList all signal names and numbers." | 1378 | "\t-l\tList all signal names and numbers.\n"\ |
1379 | "\t-q\tDo not complain if no processes were killed." | ||
1379 | #define killall_example_usage \ | 1380 | #define killall_example_usage \ |
1380 | "$ killall apache\n" | 1381 | "$ killall apache\n" |
1381 | 1382 | ||