diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2001-11-18 14:20:25 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2001-11-18 14:20:25 +0000 |
commit | fff11f1ab7ec7cc67087231361f3bde8ecff115f (patch) | |
tree | ef99119582637a44a5a065ac235f6999c85083d8 /include/usage.h | |
parent | fedce06b7fa53989df8a7994dcd2b24ed5ccf51a (diff) | |
download | busybox-w32-fff11f1ab7ec7cc67087231361f3bde8ecff115f.tar.gz busybox-w32-fff11f1ab7ec7cc67087231361f3bde8ecff115f.tar.bz2 busybox-w32-fff11f1ab7ec7cc67087231361f3bde8ecff115f.zip |
bzcat and bunzip -c support from Thomas Lundquist
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/usage.h b/include/usage.h index 12d5e1ed5..df1c18ec7 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -52,11 +52,17 @@ | |||
52 | "bar" | 52 | "bar" |
53 | 53 | ||
54 | #define bunzip2_trivial_usage \ | 54 | #define bunzip2_trivial_usage \ |
55 | "FILE" | 55 | "[-c] FILE" |
56 | #define bunzip2_full_usage \ | 56 | #define bunzip2_full_usage \ |
57 | "Uncompress FILE to current directory, stripping its .bz2 extension.\n"\ | 57 | "Uncompress FILE to current directory, stripping its .bz2 extension.\n"\ |
58 | " -c output to stdout\n"\ | ||
58 | " -k is assumed" | 59 | " -k is assumed" |
59 | 60 | ||
61 | #define bzcat_trivial_usage \ | ||
62 | "FILE" | ||
63 | #define bzcat_full_usage \ | ||
64 | "Uncompress to stdout." | ||
65 | |||
60 | #define cat_trivial_usage \ | 66 | #define cat_trivial_usage \ |
61 | "[FILE]..." | 67 | "[FILE]..." |
62 | #define cat_full_usage \ | 68 | #define cat_full_usage \ |