diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-11-09 13:51:22 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-11-09 13:51:22 +0100 |
commit | 15f7d618ea7f8c3a0277c98309268b709e20d77c (patch) | |
tree | fa7a576ee326b380453febc5a8a5bbe14eac96e0 /debianutils | |
parent | 836b79211df3aeaba1b8b65c6db5ee6193172cc0 (diff) | |
download | busybox-w32-15f7d618ea7f8c3a0277c98309268b709e20d77c.tar.gz busybox-w32-15f7d618ea7f8c3a0277c98309268b709e20d77c.tar.bz2 busybox-w32-15f7d618ea7f8c3a0277c98309268b709e20d77c.zip |
which: add -a to help text
function old new delta
packed_usage 34075 34079 +4
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'debianutils')
-rw-r--r-- | debianutils/which.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/debianutils/which.c b/debianutils/which.c index b9f1b92fd..23692dc6f 100644 --- a/debianutils/which.c +++ b/debianutils/which.c | |||
@@ -17,9 +17,10 @@ | |||
17 | //kbuild:lib-$(CONFIG_WHICH) += which.o | 17 | //kbuild:lib-$(CONFIG_WHICH) += which.o |
18 | 18 | ||
19 | //usage:#define which_trivial_usage | 19 | //usage:#define which_trivial_usage |
20 | //usage: "COMMAND..." | 20 | //usage: "[-a] COMMAND..." |
21 | //usage:#define which_full_usage "\n\n" | 21 | //usage:#define which_full_usage "\n\n" |
22 | //usage: "Locate COMMAND" | 22 | //usage: "Locate COMMAND\n" |
23 | //usage: "\n -a Show all matches" | ||
23 | //usage: | 24 | //usage: |
24 | //usage:#define which_example_usage | 25 | //usage:#define which_example_usage |
25 | //usage: "$ which login\n" | 26 | //usage: "$ which login\n" |