aboutsummaryrefslogtreecommitdiff
path: root/cat.c
diff options
context:
space:
mode:
authorerik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-04-21 01:26:49 +0000
committererik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-04-21 01:26:49 +0000
commitf2d936410c1523ab9bfc0663053d444589b2e7d7 (patch)
tree2c99ce8ba7d4d592806fbf81899e663bc884676b /cat.c
parente8140c5cf14be7ddbc10f1bf834fd4150994a184 (diff)
downloadbusybox-w32-f2d936410c1523ab9bfc0663053d444589b2e7d7.tar.gz
busybox-w32-f2d936410c1523ab9bfc0663053d444589b2e7d7.tar.bz2
busybox-w32-f2d936410c1523ab9bfc0663053d444589b2e7d7.zip
More Doc updates. cmdedit and more termio fixes.
git-svn-id: svn://busybox.net/trunk/busybox@492 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'cat.c')
-rw-r--r--cat.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/cat.c b/cat.c
index f7a6bfa7b..561b24f3f 100644
--- a/cat.c
+++ b/cat.c
@@ -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