aboutsummaryrefslogtreecommitdiff
path: root/busybox/findutils/Config.in
diff options
context:
space:
mode:
Diffstat (limited to 'busybox/findutils/Config.in')
-rw-r--r--busybox/findutils/Config.in133
1 files changed, 133 insertions, 0 deletions
diff --git a/busybox/findutils/Config.in b/busybox/findutils/Config.in
new file mode 100644
index 000000000..3143bd438
--- /dev/null
+++ b/busybox/findutils/Config.in
@@ -0,0 +1,133 @@
1#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Finding Utilities"
7
8config CONFIG_FIND
9 bool "find"
10 default n
11 help
12 find is used to search your system to find specified files.
13
14config 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
22config 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
29config 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
37config 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
45config 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
53config 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
60config CONFIG_GREP
61 bool "grep"
62 default n
63 help
64 grep is used to search files for a specified pattern.
65
66config CONFIG_FEATURE_GREP_EGREP_ALIAS
67 bool " Support extended regular expressions (egrep & grep -E)"
68 default y
69 depends on CONFIG_GREP
70 help
71 Enabled support for extended regular expressions. Extended
72 regular expressions allow for alternation (foo|bar), grouping,
73 and various repetition operators.
74
75config CONFIG_FEATURE_GREP_FGREP_ALIAS
76 bool " Alias fgrep to grep -f"
77 default y
78 depends on CONFIG_GREP
79 help
80 fgrep sees the search pattern as a normal string rather than
81 regular expressions.
82 grep -f is always builtin, this just creates the fgrep alias.
83
84config CONFIG_FEATURE_GREP_CONTEXT
85 bool " Enable before and after context flags (-A, -B and -C)"
86 default y
87 depends on CONFIG_GREP
88 help
89 Print the specified number of leading (-B) and/or trailing (-A)
90 context surrounding our matching lines.
91 Print the specified number of context lines (-C).
92
93config CONFIG_XARGS
94 bool "xargs"
95 default n
96 help
97 xargs is used to execute a specified command on
98 every item from standard input.
99
100config CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
101 bool " Enable prompt and confirmation option -p"
102 default n
103 depends on CONFIG_XARGS
104 help
105 Support prompt the user about whether to run each command
106 line and read a line from the terminal.
107
108config 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.
115
116config 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
124config 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
133endmenu