diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2001-01-02 23:41:50 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2001-01-02 23:41:50 +0000 |
commit | 7541e3a812b0d6190b63bcc8327526d9cbef68e2 (patch) | |
tree | 7f2b94c79f12b1a8d8f184fbc9568f84d2be66cf /applets | |
parent | 004827d71597b49c9c2eaac2654edc114981367c (diff) | |
download | busybox-w32-7541e3a812b0d6190b63bcc8327526d9cbef68e2.tar.gz busybox-w32-7541e3a812b0d6190b63bcc8327526d9cbef68e2.tar.bz2 busybox-w32-7541e3a812b0d6190b63bcc8327526d9cbef68e2.zip |
add dpkg-deb command
Diffstat (limited to 'applets')
-rw-r--r-- | applets/usage.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/applets/usage.c b/applets/usage.c index b904e0c7c..e92b87a9c 100644 --- a/applets/usage.c +++ b/applets/usage.c | |||
@@ -228,6 +228,20 @@ const char dos2unix_usage[] = | |||
228 | ; | 228 | ; |
229 | #endif | 229 | #endif |
230 | 230 | ||
231 | #if defined BB_DPKG_DEB | ||
232 | const char dpkg_deb_usage[] = | ||
233 | "dpkg-deb [-cexX] file directory" | ||
234 | #ifndef BB_FEATURE_TRIVIAL_HELP | ||
235 | "Perform actions on debian packages (.debs)\n" | ||
236 | "Options:\n" | ||
237 | "\t-c\tList contents of filesystem tree\n" | ||
238 | "\t-e\tExtract control files to directory\n" | ||
239 | "\t-x\tExctract packages filesystem tree to directory\n" | ||
240 | "\t-X\tVerbose extract\n" | ||
241 | #endif | ||
242 | ; | ||
243 | #endif | ||
244 | |||
231 | #if defined BB_DU | 245 | #if defined BB_DU |
232 | const char du_usage[] = | 246 | const char du_usage[] = |
233 | "du [OPTION]... [FILE]...\n" | 247 | "du [OPTION]... [FILE]...\n" |