aboutsummaryrefslogtreecommitdiff
path: root/findutils
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-10-10 23:15:23 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2003-10-10 23:15:23 +0000
commitd12061b299a096359b998e0e4415ebe77b45c96b (patch)
tree81365b3c63842635d51d2af65695a5a59aeafdb6 /findutils
parent61796945e37a6cd9dd230e8e7a86536ad58fcd14 (diff)
downloadbusybox-d12061b299a096359b998e0e4415ebe77b45c96b.tar.gz
Vodz last_patch_117, update options for new xargs
Diffstat (limited to 'findutils')
-rw-r--r--findutils/Config.in36
1 files changed, 30 insertions, 6 deletions
diff --git a/findutils/Config.in b/findutils/Config.in
index c66da742c..da8017af6 100644
--- a/findutils/Config.in
+++ b/findutils/Config.in
@@ -97,13 +97,37 @@ config CONFIG_XARGS
xargs is used to execute a specified command on
every item from standard input.
-config CONFIG_FEATURE_XARGS_FANCY
- bool " Enable extra options (-x -s -n and -E)"
- default y
+config CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
+ bool " Enable prompt and confirmation option -p"
+ default n
depends on CONFIG_XARGS
help
- Default xargs only provides the -t option, this enables the
- x, s, n and E options.
+ Support prompt the user about whether to run each command
+ line and read a line from the terminal.
-endmenu
+config CONFIG_FEATURE_XARGS_SUPPORT_QUOTES
+ bool " Enable support single and double quotes and backslash"
+ default n
+ depends on CONFIG_XARGS
+ help
+ Default xargs unsupport single and double quotes
+ and backslash for can use aruments with spaces.
+config CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT
+ bool " Enable support options -x"
+ default n
+ depends on CONFIG_XARGS
+ help
+ Enable support exit if the size (see the -s or -n option)
+ is exceeded.
+
+config CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
+ bool " Enable options -0"
+ default n
+ depends on CONFIG_XARGS
+ help
+ Enable input filenames are terminated by a null character
+ instead of by whitespace, and the quotes and backslash
+ are not special.
+
+endmenu