diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-06-18 13:23:58 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-06-18 13:23:58 +0200 |
commit | bcbd37df2495359195b0deda7c85deacc9b3ff13 (patch) | |
tree | bcbbf5011f4972def1e79210f23bcacc04d73ff2 /findutils | |
parent | 14f6f0ad4a9d07f927b96b08c20d7ea546318517 (diff) | |
download | busybox-w32-bcbd37df2495359195b0deda7c85deacc9b3ff13.tar.gz busybox-w32-bcbd37df2495359195b0deda7c85deacc9b3ff13.tar.bz2 busybox-w32-bcbd37df2495359195b0deda7c85deacc9b3ff13.zip |
tweak Config texts and some broken English elsewhere
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'findutils')
-rw-r--r-- | findutils/Config.in | 65 |
1 files changed, 32 insertions, 33 deletions
diff --git a/findutils/Config.in b/findutils/Config.in index d69a2385b..2f0e3c741 100644 --- a/findutils/Config.in +++ b/findutils/Config.in | |||
@@ -12,17 +12,17 @@ config FIND | |||
12 | find is used to search your system to find specified files. | 12 | find is used to search your system to find specified files. |
13 | 13 | ||
14 | config FEATURE_FIND_PRINT0 | 14 | config FEATURE_FIND_PRINT0 |
15 | bool "Enable -print0 option" | 15 | bool "Enable -print0: NUL-separated output" |
16 | default y | 16 | default y |
17 | depends on FIND | 17 | depends on FIND |
18 | help | 18 | help |
19 | Causes output names to be separated by a null character | 19 | Causes output names to be separated by a NUL character |
20 | rather than a newline. This allows names that contain | 20 | rather than a newline. This allows names that contain |
21 | newlines and other whitespace to be more easily | 21 | newlines and other whitespace to be more easily |
22 | interpreted by other programs. | 22 | interpreted by other programs. |
23 | 23 | ||
24 | config FEATURE_FIND_MTIME | 24 | config FEATURE_FIND_MTIME |
25 | bool "Enable modified time matching (-mtime option)" | 25 | bool "Enable -mtime: modified time matching" |
26 | default y | 26 | default y |
27 | depends on FIND | 27 | depends on FIND |
28 | help | 28 | help |
@@ -30,7 +30,7 @@ config FEATURE_FIND_MTIME | |||
30 | files, in days. | 30 | files, in days. |
31 | 31 | ||
32 | config FEATURE_FIND_MMIN | 32 | config FEATURE_FIND_MMIN |
33 | bool "Enable modified time matching (-mmin option)" | 33 | bool "Enable -mmin: modified time matching by minutes" |
34 | default y | 34 | default y |
35 | depends on FIND | 35 | depends on FIND |
36 | help | 36 | help |
@@ -38,14 +38,14 @@ config FEATURE_FIND_MMIN | |||
38 | files, in minutes. | 38 | files, in minutes. |
39 | 39 | ||
40 | config FEATURE_FIND_PERM | 40 | config FEATURE_FIND_PERM |
41 | bool "Enable permissions matching (-perm option)" | 41 | bool "Enable -perm: permissions matching" |
42 | default y | 42 | default y |
43 | depends on FIND | 43 | depends on FIND |
44 | help | 44 | help |
45 | Enable searching based on file permissions. | 45 | Enable searching based on file permissions. |
46 | 46 | ||
47 | config FEATURE_FIND_TYPE | 47 | config FEATURE_FIND_TYPE |
48 | bool "Enable filetype matching (-type option)" | 48 | bool "Enable -type: file type matching (file/dir/link/...)" |
49 | default y | 49 | default y |
50 | depends on FIND | 50 | depends on FIND |
51 | help | 51 | help |
@@ -53,21 +53,21 @@ config FEATURE_FIND_TYPE | |||
53 | directory, socket, device, etc.). | 53 | directory, socket, device, etc.). |
54 | 54 | ||
55 | config FEATURE_FIND_XDEV | 55 | config FEATURE_FIND_XDEV |
56 | bool "Enable 'stay in filesystem' option (-xdev)" | 56 | bool "Enable -xdev: 'stay in filesystem'" |
57 | default y | 57 | default y |
58 | depends on FIND | 58 | depends on FIND |
59 | help | 59 | help |
60 | This option allows find to restrict searches to a single filesystem. | 60 | This option allows find to restrict searches to a single filesystem. |
61 | 61 | ||
62 | config FEATURE_FIND_MAXDEPTH | 62 | config FEATURE_FIND_MAXDEPTH |
63 | bool "Enable -maxdepth N option" | 63 | bool "Enable -maxdepth N" |
64 | default y | 64 | default y |
65 | depends on FIND | 65 | depends on FIND |
66 | help | 66 | help |
67 | This option enables -maxdepth N option. | 67 | This option enables -maxdepth N option. |
68 | 68 | ||
69 | config FEATURE_FIND_NEWER | 69 | config FEATURE_FIND_NEWER |
70 | bool "Enable -newer option for comparing file mtimes" | 70 | bool "Enable -newer: compare file modification times" |
71 | default y | 71 | default y |
72 | depends on FIND | 72 | depends on FIND |
73 | help | 73 | help |
@@ -75,14 +75,14 @@ config FEATURE_FIND_NEWER | |||
75 | a modified time that is more recent than the specified FILE. | 75 | a modified time that is more recent than the specified FILE. |
76 | 76 | ||
77 | config FEATURE_FIND_INUM | 77 | config FEATURE_FIND_INUM |
78 | bool "Enable inode number matching (-inum option)" | 78 | bool "Enable -inum: inode number matching" |
79 | default y | 79 | default y |
80 | depends on FIND | 80 | depends on FIND |
81 | help | 81 | help |
82 | Support the 'find -inum' option for searching by inode number. | 82 | Support the 'find -inum' option for searching by inode number. |
83 | 83 | ||
84 | config FEATURE_FIND_EXEC | 84 | config FEATURE_FIND_EXEC |
85 | bool "Enable -exec option allowing execution of commands" | 85 | bool "Enable -exec: execute commands" |
86 | default y | 86 | default y |
87 | depends on FIND | 87 | depends on FIND |
88 | help | 88 | help |
@@ -90,14 +90,14 @@ config FEATURE_FIND_EXEC | |||
90 | the files matched. | 90 | the files matched. |
91 | 91 | ||
92 | config FEATURE_FIND_USER | 92 | config FEATURE_FIND_USER |
93 | bool "Enable username/uid matching (-user option)" | 93 | bool "Enable -user: username/uid matching" |
94 | default y | 94 | default y |
95 | depends on FIND | 95 | depends on FIND |
96 | help | 96 | help |
97 | Support the 'find -user' option for searching by username or uid. | 97 | Support the 'find -user' option for searching by username or uid. |
98 | 98 | ||
99 | config FEATURE_FIND_GROUP | 99 | config FEATURE_FIND_GROUP |
100 | bool "Enable group/gid matching (-group option)" | 100 | bool "Enable -group: group/gid matching" |
101 | default y | 101 | default y |
102 | depends on FIND | 102 | depends on FIND |
103 | help | 103 | help |
@@ -113,7 +113,7 @@ config FEATURE_FIND_NOT | |||
113 | the non-POSIX notation '-not'. | 113 | the non-POSIX notation '-not'. |
114 | 114 | ||
115 | config FEATURE_FIND_DEPTH | 115 | config FEATURE_FIND_DEPTH |
116 | bool "Enable the -depth option" | 116 | bool "Enable -depth" |
117 | default y | 117 | default y |
118 | depends on FIND | 118 | depends on FIND |
119 | help | 119 | help |
@@ -127,14 +127,14 @@ config FEATURE_FIND_PAREN | |||
127 | Enable usage of parens '(' to specify logical order of arguments. | 127 | Enable usage of parens '(' to specify logical order of arguments. |
128 | 128 | ||
129 | config FEATURE_FIND_SIZE | 129 | config FEATURE_FIND_SIZE |
130 | bool "Enable -size option allowing matching for file size" | 130 | bool "Enable -size: file size matching" |
131 | default y | 131 | default y |
132 | depends on FIND | 132 | depends on FIND |
133 | help | 133 | help |
134 | Support the 'find -size' option for searching by file size. | 134 | Support the 'find -size' option for searching by file size. |
135 | 135 | ||
136 | config FEATURE_FIND_PRUNE | 136 | config FEATURE_FIND_PRUNE |
137 | bool "Enable -prune option allowing to exclude subdirectories" | 137 | bool "Enable -prune: exclude subdirectories" |
138 | default y | 138 | default y |
139 | depends on FIND | 139 | depends on FIND |
140 | help | 140 | help |
@@ -142,7 +142,7 @@ config FEATURE_FIND_PRUNE | |||
142 | exclusion .svn and CVS directories. | 142 | exclusion .svn and CVS directories. |
143 | 143 | ||
144 | config FEATURE_FIND_DELETE | 144 | config FEATURE_FIND_DELETE |
145 | bool "Enable -delete option allowing to delete files" | 145 | bool "Enable -delete: delete files/dirs" |
146 | default n | 146 | default n |
147 | depends on FIND && FEATURE_FIND_DEPTH | 147 | depends on FIND && FEATURE_FIND_DEPTH |
148 | help | 148 | help |
@@ -151,21 +151,21 @@ config FEATURE_FIND_DELETE | |||
151 | try to protect the user from doing stupid things. Use with care. | 151 | try to protect the user from doing stupid things. Use with care. |
152 | 152 | ||
153 | config FEATURE_FIND_PATH | 153 | config FEATURE_FIND_PATH |
154 | bool "Enable -path option allowing to match pathname patterns" | 154 | bool "Enable -path: match pathname with shell pattern" |
155 | default y | 155 | default y |
156 | depends on FIND | 156 | depends on FIND |
157 | help | 157 | help |
158 | The -path option matches whole pathname instead of just filename. | 158 | The -path option matches whole pathname instead of just filename. |
159 | 159 | ||
160 | config FEATURE_FIND_REGEX | 160 | config FEATURE_FIND_REGEX |
161 | bool "Enable -regex: match pathname to regex" | 161 | bool "Enable -regex: match pathname with regex" |
162 | default y | 162 | default y |
163 | depends on FIND | 163 | depends on FIND |
164 | help | 164 | help |
165 | The -regex option matches whole pathname against regular expression. | 165 | The -regex option matches whole pathname against regular expression. |
166 | 166 | ||
167 | config FEATURE_FIND_CONTEXT | 167 | config FEATURE_FIND_CONTEXT |
168 | bool "Enable -context option for matching security context" | 168 | bool "Enable -context: security context matching" |
169 | default n | 169 | default n |
170 | depends on FIND && SELINUX | 170 | depends on FIND && SELINUX |
171 | help | 171 | help |
@@ -178,7 +178,7 @@ config GREP | |||
178 | grep is used to search files for a specified pattern. | 178 | grep is used to search files for a specified pattern. |
179 | 179 | ||
180 | config FEATURE_GREP_EGREP_ALIAS | 180 | config FEATURE_GREP_EGREP_ALIAS |
181 | bool "Support extended regular expressions (egrep & grep -E)" | 181 | bool "Enable extended regular expressions (egrep & grep -E)" |
182 | default y | 182 | default y |
183 | depends on GREP | 183 | depends on GREP |
184 | help | 184 | help |
@@ -193,7 +193,7 @@ config FEATURE_GREP_FGREP_ALIAS | |||
193 | help | 193 | help |
194 | fgrep sees the search pattern as a normal string rather than | 194 | fgrep sees the search pattern as a normal string rather than |
195 | regular expressions. | 195 | regular expressions. |
196 | grep -F is always builtin, this just creates the fgrep alias. | 196 | grep -F always works, this just creates the fgrep alias. |
197 | 197 | ||
198 | config FEATURE_GREP_CONTEXT | 198 | config FEATURE_GREP_CONTEXT |
199 | bool "Enable before and after context flags (-A, -B and -C)" | 199 | bool "Enable before and after context flags (-A, -B and -C)" |
@@ -208,40 +208,39 @@ config XARGS | |||
208 | bool "xargs" | 208 | bool "xargs" |
209 | default n | 209 | default n |
210 | help | 210 | help |
211 | xargs is used to execute a specified command on | 211 | xargs is used to execute a specified command for |
212 | every item from standard input. | 212 | every item from standard input. |
213 | 213 | ||
214 | config FEATURE_XARGS_SUPPORT_CONFIRMATION | 214 | config FEATURE_XARGS_SUPPORT_CONFIRMATION |
215 | bool "Enable prompt and confirmation option -p" | 215 | bool "Enable -p: prompt and confirmation" |
216 | default n | 216 | default n |
217 | depends on XARGS | 217 | depends on XARGS |
218 | help | 218 | help |
219 | Support prompt the user about whether to run each command | 219 | Support -p: prompt the user whether to run each command |
220 | line and read a line from the terminal. | 220 | line and read a line from the terminal. |
221 | 221 | ||
222 | config FEATURE_XARGS_SUPPORT_QUOTES | 222 | config FEATURE_XARGS_SUPPORT_QUOTES |
223 | bool "Enable support single and double quotes and backslash" | 223 | bool "Enable single and double quotes and backslash" |
224 | default n | 224 | default n |
225 | depends on XARGS | 225 | depends on XARGS |
226 | help | 226 | help |
227 | Default xargs unsupport single and double quotes | 227 | Support quoting in the input. |
228 | and backslash for can use aruments with spaces. | ||
229 | 228 | ||
230 | config FEATURE_XARGS_SUPPORT_TERMOPT | 229 | config FEATURE_XARGS_SUPPORT_TERMOPT |
231 | bool "Enable support options -x" | 230 | bool "Enable -x: exit if -s or -n is exceeded" |
232 | default n | 231 | default n |
233 | depends on XARGS | 232 | depends on XARGS |
234 | help | 233 | help |
235 | Enable support exit if the size (see the -s or -n option) | 234 | Support -x: exit if the command size (see the -s or -n option) |
236 | is exceeded. | 235 | is exceeded. |
237 | 236 | ||
238 | config FEATURE_XARGS_SUPPORT_ZERO_TERM | 237 | config FEATURE_XARGS_SUPPORT_ZERO_TERM |
239 | bool "Enable null terminated option -0" | 238 | bool "Enable -0: null terminated input" |
240 | default n | 239 | default n |
241 | depends on XARGS | 240 | depends on XARGS |
242 | help | 241 | help |
243 | Enable input filenames are terminated by a null character | 242 | Support -0: input items are terminated by a NUL character |
244 | instead of by whitespace, and the quotes and backslash | 243 | instead of whitespace, and the quotes and backslash |
245 | are not special. | 244 | are not special. |
246 | 245 | ||
247 | endmenu | 246 | endmenu |