diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-08-03 19:20:25 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-08-03 19:20:25 +0000 |
commit | c45b53940a39606d2a1ecaa61a5948ec99782f42 (patch) | |
tree | 01959721c057ac88c45184f14cd3543adaf6293a | |
parent | cc08ad26fe371e0b0bdbc58343c1f33a8840d2a0 (diff) | |
download | busybox-w32-c45b53940a39606d2a1ecaa61a5948ec99782f42.tar.gz busybox-w32-c45b53940a39606d2a1ecaa61a5948ec99782f42.tar.bz2 busybox-w32-c45b53940a39606d2a1ecaa61a5948ec99782f42.zip |
xargs: update help text
-rw-r--r-- | include/usage.h | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/include/usage.h b/include/usage.h index a498a1dad..7b26d650f 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -4567,13 +4567,16 @@ | |||
4567 | "Execute COMMAND on every item given by standard input\n" \ | 4567 | "Execute COMMAND on every item given by standard input\n" \ |
4568 | "\nOptions:" \ | 4568 | "\nOptions:" \ |
4569 | USE_FEATURE_XARGS_SUPPORT_CONFIRMATION( \ | 4569 | USE_FEATURE_XARGS_SUPPORT_CONFIRMATION( \ |
4570 | "\n -p Prompt the user about whether to run each command") \ | 4570 | "\n -p Ask user whether to run each command") \ |
4571 | "\n -r Do not run command for empty read lines" \ | 4571 | "\n -r Do not run command if input is empty" \ |
4572 | USE_FEATURE_XARGS_SUPPORT_TERMOPT( \ | ||
4573 | "\n -x Exit if the size is exceeded") \ | ||
4574 | USE_FEATURE_XARGS_SUPPORT_ZERO_TERM( \ | 4572 | USE_FEATURE_XARGS_SUPPORT_ZERO_TERM( \ |
4575 | "\n -0 Input filenames are terminated by a null character") \ | 4573 | "\n -0 Input is separated by NUL characters") \ |
4576 | "\n -t Print the command line on stderr before executing it" \ | 4574 | "\n -t Print the command on stderr before execution" \ |
4575 | "\n -e[STR] STR stops input processing (default _)" \ | ||
4576 | "\n -n N Pass no more than N args to COMMAND" \ | ||
4577 | "\n -s N Pass command line of no more than N bytes" \ | ||
4578 | USE_FEATURE_XARGS_SUPPORT_TERMOPT( \ | ||
4579 | "\n -x Exit if size is exceeded") \ | ||
4577 | 4580 | ||
4578 | #define xargs_example_usage \ | 4581 | #define xargs_example_usage \ |
4579 | "$ ls | xargs gzip\n" \ | 4582 | "$ ls | xargs gzip\n" \ |