diff options
Diffstat (limited to 'archival/unzip.c')
-rw-r--r-- | archival/unzip.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/archival/unzip.c b/archival/unzip.c index 5d62c08cb..52b0a6414 100644 --- a/archival/unzip.c +++ b/archival/unzip.c | |||
@@ -19,6 +19,19 @@ | |||
19 | * Zip64 + other methods | 19 | * Zip64 + other methods |
20 | */ | 20 | */ |
21 | 21 | ||
22 | //usage:#define unzip_trivial_usage | ||
23 | //usage: "[-opts[modifiers]] FILE[.zip] [LIST] [-x XLIST] [-d DIR]" | ||
24 | //usage:#define unzip_full_usage "\n\n" | ||
25 | //usage: "Extract files from ZIP archives\n" | ||
26 | //usage: "\nOptions:" | ||
27 | //usage: "\n -l List archive contents (with -q for short form)" | ||
28 | //usage: "\n -n Never overwrite files (default)" | ||
29 | //usage: "\n -o Overwrite" | ||
30 | //usage: "\n -p Send output to stdout" | ||
31 | //usage: "\n -q Quiet" | ||
32 | //usage: "\n -x XLST Exclude these files" | ||
33 | //usage: "\n -d DIR Extract files into DIR" | ||
34 | |||
22 | #include "libbb.h" | 35 | #include "libbb.h" |
23 | #include "archive.h" | 36 | #include "archive.h" |
24 | 37 | ||