Modified help string for xargs. Props to Kent Robotti <robotti@metconnect.com>.

This commit is contained in:
Mark Whitley 2000-11-17 18:13:09 +00:00
parent 50b3113dc2
commit cf32e23796
2 changed files with 4 additions and 8 deletions

View File

@ -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

View File

@ -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