diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2012-06-19 12:46:59 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2012-06-19 12:46:59 +0200 |
commit | e3e0d2b81281e049db1abbdef11a2d0da079ca8f (patch) | |
tree | c39cf9a586f5388a5191cffa21418c4bf0378b67 | |
parent | 9b78e14dfb891e3f53685e284bc9d5e3bf25f5a6 (diff) | |
download | busybox-w32-e3e0d2b81281e049db1abbdef11a2d0da079ca8f.tar.gz busybox-w32-e3e0d2b81281e049db1abbdef11a2d0da079ca8f.tar.bz2 busybox-w32-e3e0d2b81281e049db1abbdef11a2d0da079ca8f.zip |
tweak help text
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | archival/unzip.c | 12 | ||||
-rw-r--r-- | coreutils/od_bloaty.c | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/archival/unzip.c b/archival/unzip.c index 380674701..046027cc6 100644 --- a/archival/unzip.c +++ b/archival/unzip.c | |||
@@ -20,16 +20,16 @@ | |||
20 | */ | 20 | */ |
21 | 21 | ||
22 | //usage:#define unzip_trivial_usage | 22 | //usage:#define unzip_trivial_usage |
23 | //usage: "[-lnopq] FILE[.zip] [LIST] [-x XLIST] [-d DIR]" | 23 | //usage: "[-lnopq] FILE[.zip] [FILE]... [-x FILE...] [-d DIR]" |
24 | //usage:#define unzip_full_usage "\n\n" | 24 | //usage:#define unzip_full_usage "\n\n" |
25 | //usage: "Extract files from ZIP archives\n" | 25 | //usage: "Extract FILEs from ZIP archive\n" |
26 | //usage: "\n -l List archive contents (with -q for short form)" | 26 | //usage: "\n -l List contents (with -q for short form)" |
27 | //usage: "\n -n Never overwrite files (default: ask)" | 27 | //usage: "\n -n Never overwrite files (default: ask)" |
28 | //usage: "\n -o Overwrite" | 28 | //usage: "\n -o Overwrite" |
29 | //usage: "\n -p Send output to stdout" | 29 | //usage: "\n -p Print to stdout" |
30 | //usage: "\n -q Quiet" | 30 | //usage: "\n -q Quiet" |
31 | //usage: "\n -x XLST Exclude these files" | 31 | //usage: "\n -x FILE Exclude FILEs" |
32 | //usage: "\n -d DIR Extract files into DIR" | 32 | //usage: "\n -d DIR Extract into DIR" |
33 | 33 | ||
34 | #include "libbb.h" | 34 | #include "libbb.h" |
35 | #include "bb_archive.h" | 35 | #include "bb_archive.h" |
diff --git a/coreutils/od_bloaty.c b/coreutils/od_bloaty.c index 347f879d7..2f6650153 100644 --- a/coreutils/od_bloaty.c +++ b/coreutils/od_bloaty.c | |||
@@ -25,7 +25,7 @@ | |||
25 | 25 | ||
26 | //usage:#if ENABLE_DESKTOP | 26 | //usage:#if ENABLE_DESKTOP |
27 | //usage:#define od_trivial_usage | 27 | //usage:#define od_trivial_usage |
28 | //usage: "[-abcdfhilovxs] [-t TYPE] [-A RADIX] [-N SIZE] [-j SKIP] [-S MINSTR] [-w WIDTH] [FILE...]" | 28 | //usage: "[-abcdfhilovxs] [-t TYPE] [-A RADIX] [-N SIZE] [-j SKIP] [-S MINSTR] [-w WIDTH] [FILE]..." |
29 | // We don't support: | 29 | // We don't support: |
30 | // ... [FILE] [[+]OFFSET[.][b]] | 30 | // ... [FILE] [[+]OFFSET[.][b]] |
31 | // Support is buggy for: | 31 | // Support is buggy for: |