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-w32-d12061b299a096359b998e0e4415ebe77b45c96b.tar.gz
busybox-w32-d12061b299a096359b998e0e4415ebe77b45c96b.tar.bz2
busybox-w32-d12061b299a096359b998e0e4415ebe77b45c96b.zip
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
97 xargs is used to execute a specified command on 97 xargs is used to execute a specified command on
98 every item from standard input. 98 every item from standard input.
99 99
100config CONFIG_FEATURE_XARGS_FANCY 100config CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
101 bool " Enable extra options (-x -s -n and -E)" 101 bool " Enable prompt and confirmation option -p"
102 default y 102 default n
103 depends on CONFIG_XARGS 103 depends on CONFIG_XARGS
104 help 104 help
105 Default xargs only provides the -t option, this enables the 105 Support prompt the user about whether to run each command
106 x, s, n and E options. 106 line and read a line from the terminal.
107 107
108endmenu 108config CONFIG_FEATURE_XARGS_SUPPORT_QUOTES
109 bool " Enable support single and double quotes and backslash"
110 default n
111 depends on CONFIG_XARGS
112 help
113 Default xargs unsupport single and double quotes
114 and backslash for can use aruments with spaces.
109 115
116config CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT
117 bool " Enable support options -x"
118 default n
119 depends on CONFIG_XARGS
120 help
121 Enable support exit if the size (see the -s or -n option)
122 is exceeded.
123
124config CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
125 bool " Enable options -0"
126 default n
127 depends on CONFIG_XARGS
128 help
129 Enable input filenames are terminated by a null character
130 instead of by whitespace, and the quotes and backslash
131 are not special.
132
133endmenu