diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-10-05 03:48:57 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-10-05 03:48:57 +0000 |
commit | 1eb2cc0584e2dd10c54d6dc02416d8b11a542e58 (patch) | |
tree | 9555ce149062ec16167d77aa6a5d7a55850c511d /applets/usage.h | |
parent | ba46fd6221046c4eccf2169221486c5d45c1decf (diff) | |
download | busybox-w32-1eb2cc0584e2dd10c54d6dc02416d8b11a542e58.tar.gz busybox-w32-1eb2cc0584e2dd10c54d6dc02416d8b11a542e58.tar.bz2 busybox-w32-1eb2cc0584e2dd10c54d6dc02416d8b11a542e58.zip |
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))
git-svn-id: svn://busybox.net/trunk/busybox@3491 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'applets/usage.h')
-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 @@ | |||
51 | "$ basename /foo/bar.txt .txt\n" \ | 51 | "$ basename /foo/bar.txt .txt\n" \ |
52 | "bar" | 52 | "bar" |
53 | 53 | ||
54 | #define bunzip2_trivial_usage \ | ||
55 | "FILE" | ||
56 | #define bunzip2_full_usage \ | ||
57 | "Uncompress FILE to current directory, stripping its .bz2 extension.\n"\ | ||
58 | " -k is assumed" | ||
59 | |||
54 | #define cat_trivial_usage \ | 60 | #define cat_trivial_usage \ |
55 | "[FILE]..." | 61 | "[FILE]..." |
56 | #define cat_full_usage \ | 62 | #define cat_full_usage \ |