diff options
Diffstat (limited to 'cat.c')
-rw-r--r-- | cat.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -45,7 +45,11 @@ extern int cat_main(int argc, char **argv) | |||
45 | } | 45 | } |
46 | 46 | ||
47 | if (**(argv + 1) == '-') { | 47 | if (**(argv + 1) == '-') { |
48 | usage("cat [file ...]\n"); | 48 | usage("cat [FILE ...]\n" |
49 | #ifndef BB_FEATURE_TRIVIAL_HELP | ||
50 | "\nConcatenates FILE(s) and prints them to the standard output.\n" | ||
51 | #endif | ||
52 | ); | ||
49 | } | 53 | } |
50 | argc--; | 54 | argc--; |
51 | 55 | ||