diff options
Diffstat (limited to 'coreutils/cat.c')
-rw-r--r-- | coreutils/cat.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/coreutils/cat.c b/coreutils/cat.c index f7a6bfa..561b24f 100644 --- a/coreutils/cat.c +++ b/coreutils/cat.c @@ -45,7 +45,11 @@ extern int cat_main(int argc, char **argv) } if (**(argv + 1) == '-') { - usage("cat [file ...]\n"); + usage("cat [FILE ...]\n" +#ifndef BB_FEATURE_TRIVIAL_HELP + "\nConcatenates FILE(s) and prints them to the standard output.\n" +#endif + ); } argc--; |