aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2019-03-10 14:29:03 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2019-03-10 14:29:03 +0100
commit2452247ea33c1c70263bf4cbc11b3170366ff2ea (patch)
tree6f8008a3e95e77860f7e3c288c452a947d75efca
parentb096ce0fdda0918f9248ff15838cbc31525fa823 (diff)
downloadbusybox-w32-2452247ea33c1c70263bf4cbc11b3170366ff2ea.tar.gz
busybox-w32-2452247ea33c1c70263bf4cbc11b3170366ff2ea.tar.bz2
busybox-w32-2452247ea33c1c70263bf4cbc11b3170366ff2ea.zip
xargs: mention -E STR in --help
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--findutils/xargs.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/findutils/xargs.c b/findutils/xargs.c
index 35a06f723..03eafd616 100644
--- a/findutils/xargs.c
+++ b/findutils/xargs.c
@@ -516,23 +516,23 @@ static int xargs_ask_confirmation(void)
516//usage: "[OPTIONS] [PROG ARGS]" 516//usage: "[OPTIONS] [PROG ARGS]"
517//usage:#define xargs_full_usage "\n\n" 517//usage:#define xargs_full_usage "\n\n"
518//usage: "Run PROG on every item given by stdin\n" 518//usage: "Run PROG on every item given by stdin\n"
519//usage: IF_FEATURE_XARGS_SUPPORT_CONFIRMATION(
520//usage: "\n -p Ask user whether to run each command"
521//usage: )
522//usage: "\n -r Don't run command if input is empty"
523//usage: IF_FEATURE_XARGS_SUPPORT_ZERO_TERM( 519//usage: IF_FEATURE_XARGS_SUPPORT_ZERO_TERM(
524//usage: "\n -0 Input is separated by NULs" 520//usage: "\n -0 Input is separated by NULs"
525//usage: ) 521//usage: )
526//usage: IF_FEATURE_XARGS_SUPPORT_ARGS_FILE( 522//usage: IF_FEATURE_XARGS_SUPPORT_ARGS_FILE(
527//usage: "\n -a FILE Read from FILE instead of stdin" 523//usage: "\n -a FILE Read from FILE instead of stdin"
528//usage: ) 524//usage: )
525//usage: "\n -r Don't run command if input is empty"
529//usage: "\n -t Print the command on stderr before execution" 526//usage: "\n -t Print the command on stderr before execution"
530//usage: "\n -e[STR] STR stops input processing" 527//usage: IF_FEATURE_XARGS_SUPPORT_CONFIRMATION(
531//usage: "\n -n N Pass no more than N args to PROG" 528//usage: "\n -p Ask user whether to run each command"
532//usage: "\n -s N Pass command line of no more than N bytes" 529//usage: )
530//usage: "\n -E STR,-e[STR] STR stops input processing"
533//usage: IF_FEATURE_XARGS_SUPPORT_REPL_STR( 531//usage: IF_FEATURE_XARGS_SUPPORT_REPL_STR(
534//usage: "\n -I STR Replace STR within PROG ARGS with input line" 532//usage: "\n -I STR Replace STR within PROG ARGS with input line"
535//usage: ) 533//usage: )
534//usage: "\n -n N Pass no more than N args to PROG"
535//usage: "\n -s N Pass command line of no more than N bytes"
536//usage: IF_FEATURE_XARGS_SUPPORT_PARALLEL( 536//usage: IF_FEATURE_XARGS_SUPPORT_PARALLEL(
537//usage: "\n -P N Run up to N PROGs in parallel" 537//usage: "\n -P N Run up to N PROGs in parallel"
538//usage: ) 538//usage: )