diff options
author | Denys Vlasenko | 2021-11-09 13:51:22 +0100 |
---|---|---|
committer | Denys Vlasenko | 2021-11-09 13:51:22 +0100 |
commit | 15f7d618ea7f8c3a0277c98309268b709e20d77c (patch) | |
tree | fa7a576ee326b380453febc5a8a5bbe14eac96e0 | |
parent | 836b79211df3aeaba1b8b65c6db5ee6193172cc0 (diff) | |
download | busybox-15f7d618ea7f8c3a0277c98309268b709e20d77c.zip busybox-15f7d618ea7f8c3a0277c98309268b709e20d77c.tar.gz |
which: add -a to help text
function old new delta
packed_usage 34075 34079 +4
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-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 b9f1b92..23692dc 100644 --- a/debianutils/which.c +++ b/debianutils/which.c @@ -17,9 +17,10 @@ //kbuild:lib-$(CONFIG_WHICH) += which.o //usage:#define which_trivial_usage -//usage: "COMMAND..." +//usage: "[-a] COMMAND..." //usage:#define which_full_usage "\n\n" -//usage: "Locate COMMAND" +//usage: "Locate COMMAND\n" +//usage: "\n -a Show all matches" //usage: //usage:#define which_example_usage //usage: "$ which login\n" |