diff options
author | Elliott Hughes <enh@google.com> | 2018-10-17 16:21:37 -0700 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2018-10-20 14:52:08 -0500 |
commit | 74f22a7d5cb6ed03f00c261fb4e28b411f1c4c0a (patch) | |
tree | 7dcfe85f05948afe402a9a399d0d37d6a7d4d23a /toys/posix | |
parent | 3727bafda4093dffaec93a9f679f997c3df8bf70 (diff) | |
download | toybox-74f22a7d5cb6ed03f00c261fb4e28b411f1c4c0a.tar.gz |
Some more --help consistency.
From eyeballing the output of
for i in `./toybox | tr " " "\n"` ; do ./toybox $i --help ; done | \
grep '^-' | grep -v "\t"
Diffstat (limited to 'toys/posix')
-rw-r--r-- | toys/posix/kill.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toys/posix/kill.c b/toys/posix/kill.c index 3ea86e09..72ce9179 100644 --- a/toys/posix/kill.c +++ b/toys/posix/kill.c @@ -34,9 +34,9 @@ config KILLALL5 Send a signal to all processes outside current session. - -l List signal name(s) and number(s) - -o PID Omit PID - -s send SIGNAL (default SIGTERM) + -l List signal name(s) and number(s) + -o PID Omit PID + -s send SIGNAL (default SIGTERM) */ // This has to match the filename: |