aboutsummaryrefslogtreecommitdiff
path: root/archival/unzip.c
diff options
context:
space:
mode:
authorPere Orga <gotrunks@gmail.com>2011-03-27 22:40:30 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2011-03-27 22:40:30 +0200
commit1f4447b2d439e6f11d95746bb5f611c353305859 (patch)
tree0f47681009046a12ee050b989b838c68493a6a2e /archival/unzip.c
parent700fbc308dd1f2e063180786cddfcc4abd6c10c0 (diff)
downloadbusybox-w32-1f4447b2d439e6f11d95746bb5f611c353305859.tar.gz
busybox-w32-1f4447b2d439e6f11d95746bb5f611c353305859.tar.bz2
busybox-w32-1f4447b2d439e6f11d95746bb5f611c353305859.zip
move help text from include/usage.src.h to archival/*.c
Signed-off-by: Pere Orga <gotrunks@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/unzip.c')
-rw-r--r--archival/unzip.c13
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