diff options
author | Ron Yorston <rmy@pobox.com> | 2019-03-12 13:47:44 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2019-03-12 13:47:44 +0000 |
commit | fd0e6a01a68047e959ef13f3161ce302b438d2b1 (patch) | |
tree | c9f15afd1220835af46ddf8e72c077c80edbf005 /findutils/xargs.c | |
parent | db255bbadf9c6b219b29d06d4958fbd7967eb8b4 (diff) | |
parent | 2452247ea33c1c70263bf4cbc11b3170366ff2ea (diff) | |
download | busybox-w32-fd0e6a01a68047e959ef13f3161ce302b438d2b1.tar.gz busybox-w32-fd0e6a01a68047e959ef13f3161ce302b438d2b1.tar.bz2 busybox-w32-fd0e6a01a68047e959ef13f3161ce302b438d2b1.zip |
Merge branch 'busybox' into merge
Diffstat (limited to 'findutils/xargs.c')
-rw-r--r-- | findutils/xargs.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/findutils/xargs.c b/findutils/xargs.c index d014669bd..8331931bc 100644 --- a/findutils/xargs.c +++ b/findutils/xargs.c | |||
@@ -602,23 +602,23 @@ static int xargs_ask_confirmation(void) | |||
602 | //usage: "[OPTIONS] [PROG ARGS]" | 602 | //usage: "[OPTIONS] [PROG ARGS]" |
603 | //usage:#define xargs_full_usage "\n\n" | 603 | //usage:#define xargs_full_usage "\n\n" |
604 | //usage: "Run PROG on every item given by stdin\n" | 604 | //usage: "Run PROG on every item given by stdin\n" |
605 | //usage: IF_FEATURE_XARGS_SUPPORT_CONFIRMATION( | ||
606 | //usage: "\n -p Ask user whether to run each command" | ||
607 | //usage: ) | ||
608 | //usage: "\n -r Don't run command if input is empty" | ||
609 | //usage: IF_FEATURE_XARGS_SUPPORT_ZERO_TERM( | 605 | //usage: IF_FEATURE_XARGS_SUPPORT_ZERO_TERM( |
610 | //usage: "\n -0 Input is separated by NULs" | 606 | //usage: "\n -0 Input is separated by NULs" |
611 | //usage: ) | 607 | //usage: ) |
612 | //usage: IF_FEATURE_XARGS_SUPPORT_ARGS_FILE( | 608 | //usage: IF_FEATURE_XARGS_SUPPORT_ARGS_FILE( |
613 | //usage: "\n -a FILE Read from FILE instead of stdin" | 609 | //usage: "\n -a FILE Read from FILE instead of stdin" |
614 | //usage: ) | 610 | //usage: ) |
611 | //usage: "\n -r Don't run command if input is empty" | ||
615 | //usage: "\n -t Print the command on stderr before execution" | 612 | //usage: "\n -t Print the command on stderr before execution" |
616 | //usage: "\n -e[STR] STR stops input processing" | 613 | //usage: IF_FEATURE_XARGS_SUPPORT_CONFIRMATION( |
617 | //usage: "\n -n N Pass no more than N args to PROG" | 614 | //usage: "\n -p Ask user whether to run each command" |
618 | //usage: "\n -s N Pass command line of no more than N bytes" | 615 | //usage: ) |
616 | //usage: "\n -E STR,-e[STR] STR stops input processing" | ||
619 | //usage: IF_FEATURE_XARGS_SUPPORT_REPL_STR( | 617 | //usage: IF_FEATURE_XARGS_SUPPORT_REPL_STR( |
620 | //usage: "\n -I STR Replace STR within PROG ARGS with input line" | 618 | //usage: "\n -I STR Replace STR within PROG ARGS with input line" |
621 | //usage: ) | 619 | //usage: ) |
620 | //usage: "\n -n N Pass no more than N args to PROG" | ||
621 | //usage: "\n -s N Pass command line of no more than N bytes" | ||
622 | //usage: IF_FEATURE_XARGS_SUPPORT_PARALLEL( | 622 | //usage: IF_FEATURE_XARGS_SUPPORT_PARALLEL( |
623 | //usage: "\n -P N Run up to N PROGs in parallel" | 623 | //usage: "\n -P N Run up to N PROGs in parallel" |
624 | //usage: ) | 624 | //usage: ) |