diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2001-10-05 03:48:57 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2001-10-05 03:48:57 +0000 |
commit | 24e2833cdfcba3505bbde9b56906bbcbb67aa2be (patch) | |
tree | 9555ce149062ec16167d77aa6a5d7a55850c511d /applets | |
parent | 2e772edacf70e9ff45a00a34af4c94e04d490fc2 (diff) | |
download | busybox-24e2833cdfcba3505bbde9b56906bbcbb67aa2be.tar.gz |
Initial support for for bunzip2....
This code could be improvemed by
1) supporting more options,
2) Creating a shared crc table with gunzip, or perhaps generated on the fly.
3) Removing any remaining unneccessary code (e.g. if (noisy))
Diffstat (limited to 'applets')
-rw-r--r-- | applets/usage.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/applets/usage.h b/applets/usage.h index f504ac1b8..0b095a4da 100644 --- a/applets/usage.h +++ b/applets/usage.h @@ -51,6 +51,12 @@ "$ basename /foo/bar.txt .txt\n" \ "bar" +#define bunzip2_trivial_usage \ + "FILE" +#define bunzip2_full_usage \ + "Uncompress FILE to current directory, stripping its .bz2 extension.\n"\ + " -k is assumed" + #define cat_trivial_usage \ "[FILE]..." #define cat_full_usage \ |