diff options
Diffstat (limited to 'usage.c')
-rw-r--r-- | usage.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -2,15 +2,15 @@ | |||
2 | 2 | ||
3 | #if defined BB_AR | 3 | #if defined BB_AR |
4 | const char ar_usage[] = | 4 | const char ar_usage[] = |
5 | "ar [optxvV] archive [filenames] \n" | 5 | "ar [[-ov] -tpv archive] filenames \n" |
6 | #ifndef BB_FEATURE_TRIVIAL_HELP | 6 | #ifndef BB_FEATURE_TRIVIAL_HELP |
7 | "\nExtract or list files from an ar archive.\n\n" | 7 | "\nExtract or list files from an ar archive.\n\n" |
8 | "Options:\n" | 8 | "Options:\n" |
9 | "\to\t\tpreserve original dates\n" | 9 | "\t-o\t\tpreserve original dates\n" |
10 | "\tp\t\textract to stdout\n" | 10 | "\t-p\t\textract to stdout\n" |
11 | "\tt\t\tlist\n" | 11 | "\t-t\t\tlist\n" |
12 | "\tx\t\textract\n" | 12 | "\t-x\t\textract\n" |
13 | "\tv\t\tverbosely list files processed\n" | 13 | "\t-v\t\tverbosely list files processed\n" |
14 | #endif | 14 | #endif |
15 | ; | 15 | ; |
16 | #endif | 16 | #endif |