diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-10-10 23:15:23 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-10-10 23:15:23 +0000 |
commit | 5b806ab451f81ca07118074c22398d98e46c9ca3 (patch) | |
tree | 81365b3c63842635d51d2af65695a5a59aeafdb6 /findutils | |
parent | 0e8f98de8c7a784604a41e02088d3a7cbb4c77c9 (diff) | |
download | busybox-w32-5b806ab451f81ca07118074c22398d98e46c9ca3.tar.gz busybox-w32-5b806ab451f81ca07118074c22398d98e46c9ca3.tar.bz2 busybox-w32-5b806ab451f81ca07118074c22398d98e46c9ca3.zip |
Vodz last_patch_117, update options for new xargs
git-svn-id: svn://busybox.net/trunk/busybox@7635 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'findutils')
-rw-r--r-- | findutils/Config.in | 36 |
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 | ||
100 | config CONFIG_FEATURE_XARGS_FANCY | 100 | config 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 | ||
108 | endmenu | 108 | config 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 | ||
116 | config 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 | |||
124 | config 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 | |||
133 | endmenu | ||