diff options
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/include/usage.h b/include/usage.h index 3fb996126..123462a02 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -202,6 +202,31 @@ | |||
202 | #define busybox_notes_usage \ | 202 | #define busybox_notes_usage \ |
203 | "Hello world!\n" | 203 | "Hello world!\n" |
204 | 204 | ||
205 | #define lzop_trivial_usage \ | ||
206 | "[-cfvd123456789CF] [file..]" | ||
207 | #define lzop_full_usage "\n\n" \ | ||
208 | " -c Write to standard output" \ | ||
209 | "\n -f Force" \ | ||
210 | "\n -v Verbose" \ | ||
211 | "\n -d Decompress" \ | ||
212 | "\n -F Don't store or verify checksum" \ | ||
213 | "\n -C Also write checksum of compressed block" \ | ||
214 | "\n -1..9 Compression level" \ | ||
215 | |||
216 | #define lzopcat_trivial_usage \ | ||
217 | "[-vCF] [file..]" | ||
218 | #define lzopcat_full_usage "\n\n" \ | ||
219 | " -v Verbose" \ | ||
220 | "\n -F Don't store or verify checksum" \ | ||
221 | |||
222 | #define unlzop_trivial_usage \ | ||
223 | "[-cfvCF] [file..]" | ||
224 | #define unlzop_full_usage "\n\n" \ | ||
225 | " -c Write to standard output" \ | ||
226 | "\n -f Force" \ | ||
227 | "\n -v Verbose" \ | ||
228 | "\n -F Don't store or verify checksum" \ | ||
229 | |||
205 | #define bzcat_trivial_usage \ | 230 | #define bzcat_trivial_usage \ |
206 | "FILE" | 231 | "FILE" |
207 | #define bzcat_full_usage "\n\n" \ | 232 | #define bzcat_full_usage "\n\n" \ |