2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
6 menu "Finding Utilities"
8 config BUSYBOX_CONFIG_FIND
12 find is used to search your system to find specified files.
14 config BUSYBOX_CONFIG_FEATURE_FIND_MTIME
15 bool " Enable modified time matching (-mtime) option"
17 depends on BUSYBOX_CONFIG_FIND
19 Allow searching based on the modification time of
22 config BUSYBOX_CONFIG_FEATURE_FIND_MMIN
23 bool " Enable modified time matching (-min) option"
25 depends on BUSYBOX_CONFIG_FIND
27 Allow searching based on the modification time of
30 config BUSYBOX_CONFIG_FEATURE_FIND_PERM
31 bool " Enable permissions matching (-perm) option"
33 depends on BUSYBOX_CONFIG_FIND
35 Enable searching based on file permissions.
37 config BUSYBOX_CONFIG_FEATURE_FIND_TYPE
38 bool " Enable filetype matching (-type) option"
40 depends on BUSYBOX_CONFIG_FIND
42 Enable searching based on file type (file,
43 directory, socket, device, etc.).
45 config BUSYBOX_CONFIG_FEATURE_FIND_XDEV
46 bool " Enable stay in filesystem (-xdev) option"
48 depends on BUSYBOX_CONFIG_FIND
50 This option will allow find to restrict searches to a single
53 config BUSYBOX_CONFIG_FEATURE_FIND_NEWER
54 bool " Enable -newer option for comparing file mtimes"
56 depends on BUSYBOX_CONFIG_FIND
58 Support the 'find -newer' option for finding any files which have
59 a modified time that is more recent than the specified FILE.
61 config BUSYBOX_CONFIG_FEATURE_FIND_INUM
62 bool " Enable inode number matching (-inum) option"
64 depends on BUSYBOX_CONFIG_FIND
66 Support the 'find -inum' option for searching by inode number.
68 config BUSYBOX_CONFIG_FEATURE_FIND_EXEC
69 bool " Enable (-exec) option allowing execution of commands"
71 depends on BUSYBOX_CONFIG_FIND
73 Support the 'find -exec' option for executing commands based upon
76 config BUSYBOX_CONFIG_GREP
80 grep is used to search files for a specified pattern.
82 config BUSYBOX_CONFIG_FEATURE_GREP_EGREP_ALIAS
83 bool " Support extended regular expressions (egrep & grep -E)"
85 depends on BUSYBOX_CONFIG_GREP
87 Enabled support for extended regular expressions. Extended
88 regular expressions allow for alternation (foo|bar), grouping,
89 and various repetition operators.
91 config BUSYBOX_CONFIG_FEATURE_GREP_FGREP_ALIAS
92 bool " Alias fgrep to grep -F"
94 depends on BUSYBOX_CONFIG_GREP
96 fgrep sees the search pattern as a normal string rather than
98 grep -F is always builtin, this just creates the fgrep alias.
100 config BUSYBOX_CONFIG_FEATURE_GREP_CONTEXT
101 bool " Enable before and after context flags (-A, -B and -C)"
103 depends on BUSYBOX_CONFIG_GREP
105 Print the specified number of leading (-B) and/or trailing (-A)
106 context surrounding our matching lines.
107 Print the specified number of context lines (-C).
109 config BUSYBOX_CONFIG_XARGS
113 xargs is used to execute a specified command on
114 every item from standard input.
116 config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
117 bool " Enable prompt and confirmation option -p"
119 depends on BUSYBOX_CONFIG_XARGS
121 Support prompt the user about whether to run each command
122 line and read a line from the terminal.
124 config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_QUOTES
125 bool " Enable support single and double quotes and backslash"
127 depends on BUSYBOX_CONFIG_XARGS
129 Default xargs unsupport single and double quotes
130 and backslash for can use aruments with spaces.
132 config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT
133 bool " Enable support options -x"
135 depends on BUSYBOX_CONFIG_XARGS
137 Enable support exit if the size (see the -s or -n option)
140 config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
141 bool " Enable options -0"
143 depends on BUSYBOX_CONFIG_XARGS
145 Enable input filenames are terminated by a null character
146 instead of by whitespace, and the quotes and backslash