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 /archival | |
parent | 9b78e14dfb891e3f53685e284bc9d5e3bf25f5a6 (diff) | |
download | busybox-e3e0d2b81281e049db1abbdef11a2d0da079ca8f.tar.gz |
tweak help text
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival')
-rw-r--r-- | archival/unzip.c | 12 |
1 files changed, 6 insertions, 6 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 @@ */ //usage:#define unzip_trivial_usage -//usage: "[-lnopq] FILE[.zip] [LIST] [-x XLIST] [-d DIR]" +//usage: "[-lnopq] FILE[.zip] [FILE]... [-x FILE...] [-d DIR]" //usage:#define unzip_full_usage "\n\n" -//usage: "Extract files from ZIP archives\n" -//usage: "\n -l List archive contents (with -q for short form)" +//usage: "Extract FILEs from ZIP archive\n" +//usage: "\n -l List contents (with -q for short form)" //usage: "\n -n Never overwrite files (default: ask)" //usage: "\n -o Overwrite" -//usage: "\n -p Send output to stdout" +//usage: "\n -p Print to stdout" //usage: "\n -q Quiet" -//usage: "\n -x XLST Exclude these files" -//usage: "\n -d DIR Extract files into DIR" +//usage: "\n -x FILE Exclude FILEs" +//usage: "\n -d DIR Extract into DIR" #include "libbb.h" #include "bb_archive.h" |