diff options
author | Mark Whitley <markw@lineo.com> | 2000-11-17 18:13:09 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2000-11-17 18:13:09 +0000 |
commit | cf32e23796a94e96d36d302973509935ea051816 (patch) | |
tree | 51e1b3253d33fe294d92829d157916dd34d24976 | |
parent | 50b3113dc2d7056d34e053826cb2d23327c99803 (diff) | |
download | busybox-cf32e23796a94e96d36d302973509935ea051816.tar.gz |
Modified help string for xargs. Props to Kent Robotti <robotti@metconnect.com>.
-rw-r--r-- | applets/usage.c | 6 | ||||
-rw-r--r-- | usage.c | 6 |
2 files changed, 4 insertions, 8 deletions
diff --git a/applets/usage.c b/applets/usage.c index 7e3ea8191..423172d7b 100644 --- a/applets/usage.c +++ b/applets/usage.c @@ -1473,11 +1473,9 @@ const char whoami_usage[] = #endif #if defined BB_XARGS -const char xargs_usage[] = "xargs [OPTIONS] [COMMAND] [ARGS...]\n" +const char xargs_usage[] = "xargs [COMMAND] [ARGS...]\n" #ifndef BB_FEATURE_TRIVIAL_HELP - "\nExecutes COMMAND on every item given by standard input.\n\n" - "Options:\n" - "\t-t\tPrint the command just before it is run\n" + "\nExecutes COMMAND on every item given by standard input.\n" #endif ; #endif @@ -1473,11 +1473,9 @@ const char whoami_usage[] = #endif #if defined BB_XARGS -const char xargs_usage[] = "xargs [OPTIONS] [COMMAND] [ARGS...]\n" +const char xargs_usage[] = "xargs [COMMAND] [ARGS...]\n" #ifndef BB_FEATURE_TRIVIAL_HELP - "\nExecutes COMMAND on every item given by standard input.\n\n" - "Options:\n" - "\t-t\tPrint the command just before it is run\n" + "\nExecutes COMMAND on every item given by standard input.\n" #endif ; #endif |