Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Whitley <markw@lineo.com>2000-11-17 21:13:09 +0300
committerMark Whitley <markw@lineo.com>2000-11-17 21:13:09 +0300
commitcf32e23796a94e96d36d302973509935ea051816 (patch)
tree51e1b3253d33fe294d92829d157916dd34d24976
parent50b3113dc2d7056d34e053826cb2d23327c99803 (diff)
Modified help string for xargs. Props to Kent Robotti <robotti@metconnect.com>.
-rw-r--r--applets/usage.c6
-rw-r--r--usage.c6
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
diff --git a/usage.c b/usage.c
index 7e3ea8191..423172d7b 100644
--- a/usage.c
+++ b/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