busybox: update to 1.26.2
[oweals/openwrt.git] / package / utils / busybox / config / findutils / Config.in
1 # DO NOT EDIT. This file is generated from Config.src
2 #
3 # For a description of the syntax of this configuration file,
4 # see scripts/kbuild/config-language.txt.
5 #
6
7 menu "Finding Utilities"
8
9 config BUSYBOX_CONFIG_FIND
10         bool "find"
11         default BUSYBOX_DEFAULT_FIND
12         help
13           find is used to search your system to find specified files.
14
15 config BUSYBOX_CONFIG_FEATURE_FIND_PRINT0
16         bool "Enable -print0: NUL-terminated output"
17         default BUSYBOX_DEFAULT_FEATURE_FIND_PRINT0
18         depends on BUSYBOX_CONFIG_FIND
19         help
20           Causes output names to be separated by a NUL character
21           rather than a newline. This allows names that contain
22           newlines and other whitespace to be more easily
23           interpreted by other programs.
24
25 config BUSYBOX_CONFIG_FEATURE_FIND_MTIME
26         bool "Enable -mtime: modified time matching"
27         default BUSYBOX_DEFAULT_FEATURE_FIND_MTIME
28         depends on BUSYBOX_CONFIG_FIND
29         help
30           Allow searching based on the modification time of
31           files, in days.
32
33 config BUSYBOX_CONFIG_FEATURE_FIND_MMIN
34         bool "Enable -mmin: modified time matching by minutes"
35         default BUSYBOX_DEFAULT_FEATURE_FIND_MMIN
36         depends on BUSYBOX_CONFIG_FIND
37         help
38           Allow searching based on the modification time of
39           files, in minutes.
40
41 config BUSYBOX_CONFIG_FEATURE_FIND_PERM
42         bool "Enable -perm: permissions matching"
43         default BUSYBOX_DEFAULT_FEATURE_FIND_PERM
44         depends on BUSYBOX_CONFIG_FIND
45         help
46           Enable searching based on file permissions.
47
48 config BUSYBOX_CONFIG_FEATURE_FIND_TYPE
49         bool "Enable -type: file type matching (file/dir/link/...)"
50         default BUSYBOX_DEFAULT_FEATURE_FIND_TYPE
51         depends on BUSYBOX_CONFIG_FIND
52         help
53           Enable searching based on file type (file,
54           directory, socket, device, etc.).
55
56 config BUSYBOX_CONFIG_FEATURE_FIND_XDEV
57         bool "Enable -xdev: 'stay in filesystem'"
58         default BUSYBOX_DEFAULT_FEATURE_FIND_XDEV
59         depends on BUSYBOX_CONFIG_FIND
60         help
61           This option allows find to restrict searches to a single filesystem.
62
63 config BUSYBOX_CONFIG_FEATURE_FIND_MAXDEPTH
64         bool "Enable -mindepth N and -maxdepth N"
65         default BUSYBOX_DEFAULT_FEATURE_FIND_MAXDEPTH
66         depends on BUSYBOX_CONFIG_FIND
67         help
68           This option enables -mindepth N and -maxdepth N option.
69
70 config BUSYBOX_CONFIG_FEATURE_FIND_NEWER
71         bool "Enable -newer: compare file modification times"
72         default BUSYBOX_DEFAULT_FEATURE_FIND_NEWER
73         depends on BUSYBOX_CONFIG_FIND
74         help
75           Support the 'find -newer' option for finding any files which have
76           modification time that is more recent than the specified FILE.
77
78 config BUSYBOX_CONFIG_FEATURE_FIND_INUM
79         bool "Enable -inum: inode number matching"
80         default BUSYBOX_DEFAULT_FEATURE_FIND_INUM
81         depends on BUSYBOX_CONFIG_FIND
82         help
83           Support the 'find -inum' option for searching by inode number.
84
85 config BUSYBOX_CONFIG_FEATURE_FIND_EXEC
86         bool "Enable -exec: execute commands"
87         default BUSYBOX_DEFAULT_FEATURE_FIND_EXEC
88         depends on BUSYBOX_CONFIG_FIND
89         help
90           Support the 'find -exec' option for executing commands based upon
91           the files matched.
92
93 config BUSYBOX_CONFIG_FEATURE_FIND_EXEC_PLUS
94         bool "Enable -exec ... {} +"
95         default BUSYBOX_DEFAULT_FEATURE_FIND_EXEC_PLUS
96         depends on BUSYBOX_CONFIG_FEATURE_FIND_EXEC
97         help
98           Support the 'find -exec ... {} +' option for executing commands
99           for all matched files at once.
100           Without this option, -exec + is a synonym for -exec ;
101           (IOW: it works correctly, but without expected speedup)
102
103 config BUSYBOX_CONFIG_FEATURE_FIND_USER
104         bool "Enable -user: username/uid matching"
105         default BUSYBOX_DEFAULT_FEATURE_FIND_USER
106         depends on BUSYBOX_CONFIG_FIND
107         help
108           Support the 'find -user' option for searching by username or uid.
109
110 config BUSYBOX_CONFIG_FEATURE_FIND_GROUP
111         bool "Enable -group: group/gid matching"
112         default BUSYBOX_DEFAULT_FEATURE_FIND_GROUP
113         depends on BUSYBOX_CONFIG_FIND
114         help
115           Support the 'find -group' option for searching by group name or gid.
116
117 config BUSYBOX_CONFIG_FEATURE_FIND_NOT
118         bool "Enable the 'not' (!) operator"
119         default BUSYBOX_DEFAULT_FEATURE_FIND_NOT
120         depends on BUSYBOX_CONFIG_FIND
121         help
122           Support the '!' operator to invert the test results.
123           If 'Enable full-blown desktop' is enabled, then will also support
124           the non-POSIX notation '-not'.
125
126 config BUSYBOX_CONFIG_FEATURE_FIND_DEPTH
127         bool "Enable -depth"
128         default BUSYBOX_DEFAULT_FEATURE_FIND_DEPTH
129         depends on BUSYBOX_CONFIG_FIND
130         help
131           Process each directory's contents before the directory itself.
132
133 config BUSYBOX_CONFIG_FEATURE_FIND_PAREN
134         bool "Enable parens in options"
135         default BUSYBOX_DEFAULT_FEATURE_FIND_PAREN
136         depends on BUSYBOX_CONFIG_FIND
137         help
138           Enable usage of parens '(' to specify logical order of arguments.
139
140 config BUSYBOX_CONFIG_FEATURE_FIND_SIZE
141         bool "Enable -size: file size matching"
142         default BUSYBOX_DEFAULT_FEATURE_FIND_SIZE
143         depends on BUSYBOX_CONFIG_FIND
144         help
145           Support the 'find -size' option for searching by file size.
146
147 config BUSYBOX_CONFIG_FEATURE_FIND_PRUNE
148         bool "Enable -prune: exclude subdirectories"
149         default BUSYBOX_DEFAULT_FEATURE_FIND_PRUNE
150         depends on BUSYBOX_CONFIG_FIND
151         help
152           If the file is a directory, dont descend into it. Useful for
153           exclusion .svn and CVS directories.
154
155 config BUSYBOX_CONFIG_FEATURE_FIND_DELETE
156         bool "Enable -delete: delete files/dirs"
157         default BUSYBOX_DEFAULT_FEATURE_FIND_DELETE
158         depends on BUSYBOX_CONFIG_FIND && BUSYBOX_CONFIG_FEATURE_FIND_DEPTH
159         help
160           Support the 'find -delete' option for deleting files and directories.
161           WARNING: This option can do much harm if used wrong. Busybox will not
162           try to protect the user from doing stupid things. Use with care.
163
164 config BUSYBOX_CONFIG_FEATURE_FIND_PATH
165         bool "Enable -path: match pathname with shell pattern"
166         default BUSYBOX_DEFAULT_FEATURE_FIND_PATH
167         depends on BUSYBOX_CONFIG_FIND
168         help
169           The -path option matches whole pathname instead of just filename.
170
171 config BUSYBOX_CONFIG_FEATURE_FIND_REGEX
172         bool "Enable -regex: match pathname with regex"
173         default BUSYBOX_DEFAULT_FEATURE_FIND_REGEX
174         depends on BUSYBOX_CONFIG_FIND
175         help
176           The -regex option matches whole pathname against regular expression.
177
178 config BUSYBOX_CONFIG_FEATURE_FIND_CONTEXT
179         bool "Enable -context: security context matching"
180         default BUSYBOX_DEFAULT_FEATURE_FIND_CONTEXT
181         depends on BUSYBOX_CONFIG_FIND && BUSYBOX_CONFIG_SELINUX
182         help
183           Support the 'find -context' option for matching security context.
184
185 config BUSYBOX_CONFIG_FEATURE_FIND_LINKS
186         bool "Enable -links: link count matching"
187         default BUSYBOX_DEFAULT_FEATURE_FIND_LINKS
188         depends on BUSYBOX_CONFIG_FIND
189         help
190           Support the 'find -links' option for matching number of links.
191 config BUSYBOX_CONFIG_GREP
192         bool "grep"
193         default BUSYBOX_DEFAULT_GREP
194         help
195           grep is used to search files for a specified pattern.
196
197 config BUSYBOX_CONFIG_EGREP
198         bool "egrep"
199         default BUSYBOX_DEFAULT_EGREP
200         help
201           Alias to "grep -E"
202
203 config BUSYBOX_CONFIG_FGREP
204         bool "fgrep"
205         default BUSYBOX_DEFAULT_FGREP
206         help
207           Alias to "grep -F"
208
209 config BUSYBOX_CONFIG_FEATURE_GREP_CONTEXT
210         bool "Enable before and after context flags (-A, -B and -C)"
211         default BUSYBOX_DEFAULT_FEATURE_GREP_CONTEXT
212         depends on BUSYBOX_CONFIG_GREP || BUSYBOX_CONFIG_EGREP
213         help
214           Print the specified number of leading (-B) and/or trailing (-A)
215           context surrounding our matching lines.
216           Print the specified number of context lines (-C).
217 config BUSYBOX_CONFIG_XARGS
218         bool "xargs"
219         default BUSYBOX_DEFAULT_XARGS
220         help
221           xargs is used to execute a specified command for
222           every item from standard input.
223
224 config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
225         bool "Enable -p: prompt and confirmation"
226         default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_CONFIRMATION
227         depends on BUSYBOX_CONFIG_XARGS
228         help
229           Support -p: prompt the user whether to run each command
230           line and read a line from the terminal.
231
232 config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_QUOTES
233         bool "Enable single and double quotes and backslash"
234         default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_QUOTES
235         depends on BUSYBOX_CONFIG_XARGS
236         help
237           Support quoting in the input.
238
239 config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT
240         bool "Enable -x: exit if -s or -n is exceeded"
241         default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_TERMOPT
242         depends on BUSYBOX_CONFIG_XARGS
243         help
244           Support -x: exit if the command size (see the -s or -n option)
245           is exceeded.
246
247 config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
248         bool "Enable -0: NUL-terminated input"
249         default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_ZERO_TERM
250         depends on BUSYBOX_CONFIG_XARGS
251         help
252           Support -0: input items are terminated by a NUL character
253           instead of whitespace, and the quotes and backslash
254           are not special.
255
256 config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_REPL_STR
257         bool "Enable -I STR: string to replace"
258         default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_REPL_STR
259         depends on BUSYBOX_CONFIG_XARGS
260         help
261           Support -I STR and -i[STR] options.
262
263 endmenu