Add find -exec support from Rob Sullivan, and convert CONFIG_ to ENABLE_
[platform/upstream/busybox.git] / findutils / Config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
4 #
5
6 menu "Finding Utilities"
7
8 config CONFIG_FIND
9         bool "find"
10         default n
11         help
12           find is used to search your system to find specified files.
13
14 config CONFIG_FEATURE_FIND_MTIME
15         bool "  Enable modified time matching (-mtime) option"
16         default y
17         depends on CONFIG_FIND
18         help
19           Allow searching based on the modification time of
20           files.
21
22 config CONFIG_FEATURE_FIND_PERM
23         bool "  Enable permissions matching (-perm) option"
24         default y
25         depends on CONFIG_FIND
26         help
27           Enable searching based on file permissions.
28
29 config CONFIG_FEATURE_FIND_TYPE
30         bool "  Enable filetype matching (-type) option"
31         default y
32         depends on CONFIG_FIND
33         help
34           Enable searching based on file type (file,
35           directory, socket, device, etc.).
36
37 config CONFIG_FEATURE_FIND_XDEV
38         bool "  Enable stay in filesystem (-xdev) option"
39         default y
40         depends on CONFIG_FIND
41         help
42           This option will allow find to restrict searches to a single
43           filesystem.
44
45 config CONFIG_FEATURE_FIND_NEWER
46         bool "  Enable -newer option for comparing file mtimes"
47         default y
48         depends on CONFIG_FIND
49         help
50           Support the 'find -newer' option for finding any files which have
51           a modified time that is more recent than the specified FILE.
52
53 config CONFIG_FEATURE_FIND_INUM
54         bool "  Enable inode number matching (-inum) option"
55         default y
56         depends on CONFIG_FIND
57         help
58           Support the 'find -inum' option for searching by inode number.
59
60 config CONFIG_FEATURE_FIND_EXEC
61         bool "  Enable (-exec) option allowing execution of commands"
62         default y
63         depends on CONFIG_FIND
64         help
65           Support the 'find -exec' option for executing commands based upon
66           the files matched.
67
68 config CONFIG_GREP
69         bool "grep"
70         default n
71         help
72           grep is used to search files for a specified pattern.
73
74 config CONFIG_FEATURE_GREP_EGREP_ALIAS
75         bool "  Support extended regular expressions (egrep & grep -E)"
76         default y
77         depends on CONFIG_GREP
78         help
79           Enabled support for extended regular expressions.  Extended
80           regular expressions allow for alternation (foo|bar), grouping,
81           and various repetition operators.
82
83 config CONFIG_FEATURE_GREP_FGREP_ALIAS
84         bool "  Alias fgrep to grep -F"
85         default y
86         depends on CONFIG_GREP
87         help
88           fgrep sees the search pattern as a normal string rather than
89           regular expressions.
90           grep -F is always builtin, this just creates the fgrep alias.
91
92 config CONFIG_FEATURE_GREP_CONTEXT
93         bool "  Enable before and after context flags (-A, -B and -C)"
94         default y
95         depends on CONFIG_GREP
96         help
97           Print the specified number of leading (-B) and/or trailing (-A)
98           context surrounding our matching lines.
99           Print the specified number of context lines (-C).
100
101 config CONFIG_XARGS
102         bool "xargs"
103         default n
104         help
105           xargs is used to execute a specified command on
106           every item from standard input.
107
108 config CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
109         bool "  Enable prompt and confirmation option -p"
110         default n
111         depends on CONFIG_XARGS
112         help
113           Support prompt the user about whether to run each command
114           line and read a line from the terminal.
115
116 config CONFIG_FEATURE_XARGS_SUPPORT_QUOTES
117         bool "  Enable support single and double quotes and backslash"
118         default n
119         depends on CONFIG_XARGS
120         help
121           Default xargs unsupport single and double quotes
122           and backslash for can use aruments with spaces.
123
124 config CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT
125         bool "  Enable support options -x"
126         default n
127         depends on CONFIG_XARGS
128         help
129           Enable support exit if the size (see the -s or -n option)
130           is exceeded.
131
132 config CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
133         bool "  Enable options -0"
134         default n
135         depends on CONFIG_XARGS
136         help
137           Enable input filenames are terminated by a null character
138           instead of by whitespace, and the quotes and backslash
139           are not special.
140
141 endmenu