diff options
author | Pere Orga <gotrunks@gmail.com> | 2011-03-27 22:40:30 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-03-27 22:40:30 +0200 |
commit | 1f4447b2d439e6f11d95746bb5f611c353305859 (patch) | |
tree | 0f47681009046a12ee050b989b838c68493a6a2e /archival/ar.c | |
parent | 700fbc308dd1f2e063180786cddfcc4abd6c10c0 (diff) | |
download | busybox-w32-1f4447b2d439e6f11d95746bb5f611c353305859.tar.gz busybox-w32-1f4447b2d439e6f11d95746bb5f611c353305859.tar.bz2 busybox-w32-1f4447b2d439e6f11d95746bb5f611c353305859.zip |
move help text from include/usage.src.h to archival/*.c
Signed-off-by: Pere Orga <gotrunks@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/ar.c')
-rw-r--r-- | archival/ar.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/archival/ar.c b/archival/ar.c index a2e3306ac..f5a379fb8 100644 --- a/archival/ar.c +++ b/archival/ar.c | |||
@@ -17,6 +17,17 @@ | |||
17 | * http://www.unix-systems.org/single_unix_specification_v2/xcu/ar.html | 17 | * http://www.unix-systems.org/single_unix_specification_v2/xcu/ar.html |
18 | */ | 18 | */ |
19 | 19 | ||
20 | //usage:#define ar_trivial_usage | ||
21 | //usage: "[-o] [-v] [-p] [-t] [-x] ARCHIVE FILES" | ||
22 | //usage:#define ar_full_usage "\n\n" | ||
23 | //usage: "Extract or list FILES from an ar archive\n" | ||
24 | //usage: "\nOptions:" | ||
25 | //usage: "\n -o Preserve original dates" | ||
26 | //usage: "\n -p Extract to stdout" | ||
27 | //usage: "\n -t List" | ||
28 | //usage: "\n -x Extract" | ||
29 | //usage: "\n -v Verbose" | ||
30 | |||
20 | #include "libbb.h" | 31 | #include "libbb.h" |
21 | #include "archive.h" | 32 | #include "archive.h" |
22 | #include "ar.h" | 33 | #include "ar.h" |