source: freewrt/package/busybox/config/findutils/Config.in@ 475ad56

freewrt_1_0 freewrt_2_0
Last change on this file since 475ad56 was 475ad56, checked in by Waldemar Brodkorb <wbx@…>, 20 years ago

add OpenWrt trunk revision 3830.

git-svn-id: svn://www.freewrt.org/trunk/freewrt@1 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 4.2 KB
Line 
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 BUSYBOX_CONFIG_FIND
9 bool "find"
10 default y
11 help
12 find is used to search your system to find specified files.
13
14config BUSYBOX_CONFIG_FEATURE_FIND_MTIME
15 bool " Enable modified time matching (-mtime) option"
16 default n
17 depends on BUSYBOX_CONFIG_FIND
18 help
19 Allow searching based on the modification time of
20 files, in days.
21
22config BUSYBOX_CONFIG_FEATURE_FIND_MMIN
23 bool " Enable modified time matching (-min) option"
24 default n
25 depends on BUSYBOX_CONFIG_FIND
26 help
27 Allow searching based on the modification time of
28 files, in minutes.
29
30config BUSYBOX_CONFIG_FEATURE_FIND_PERM
31 bool " Enable permissions matching (-perm) option"
32 default y
33 depends on BUSYBOX_CONFIG_FIND
34 help
35 Enable searching based on file permissions.
36
37config BUSYBOX_CONFIG_FEATURE_FIND_TYPE
38 bool " Enable filetype matching (-type) option"
39 default y
40 depends on BUSYBOX_CONFIG_FIND
41 help
42 Enable searching based on file type (file,
43 directory, socket, device, etc.).
44
45config BUSYBOX_CONFIG_FEATURE_FIND_XDEV
46 bool " Enable stay in filesystem (-xdev) option"
47 default y
48 depends on BUSYBOX_CONFIG_FIND
49 help
50 This option will allow find to restrict searches to a single
51 filesystem.
52
53config BUSYBOX_CONFIG_FEATURE_FIND_NEWER
54 bool " Enable -newer option for comparing file mtimes"
55 default n
56 depends on BUSYBOX_CONFIG_FIND
57 help
58 Support the 'find -newer' option for finding any files which have
59 a modified time that is more recent than the specified FILE.
60
61config BUSYBOX_CONFIG_FEATURE_FIND_INUM
62 bool " Enable inode number matching (-inum) option"
63 default n
64 depends on BUSYBOX_CONFIG_FIND
65 help
66 Support the 'find -inum' option for searching by inode number.
67
68config BUSYBOX_CONFIG_FEATURE_FIND_EXEC
69 bool " Enable (-exec) option allowing execution of commands"
70 default y
71 depends on BUSYBOX_CONFIG_FIND
72 help
73 Support the 'find -exec' option for executing commands based upon
74 the files matched.
75
76config BUSYBOX_CONFIG_GREP
77 bool "grep"
78 default y
79 help
80 grep is used to search files for a specified pattern.
81
82config BUSYBOX_CONFIG_FEATURE_GREP_EGREP_ALIAS
83 bool " Support extended regular expressions (egrep & grep -E)"
84 default y
85 depends on BUSYBOX_CONFIG_GREP
86 help
87 Enabled support for extended regular expressions. Extended
88 regular expressions allow for alternation (foo|bar), grouping,
89 and various repetition operators.
90
91config BUSYBOX_CONFIG_FEATURE_GREP_FGREP_ALIAS
92 bool " Alias fgrep to grep -F"
93 default y
94 depends on BUSYBOX_CONFIG_GREP
95 help
96 fgrep sees the search pattern as a normal string rather than
97 regular expressions.
98 grep -F is always builtin, this just creates the fgrep alias.
99
100config BUSYBOX_CONFIG_FEATURE_GREP_CONTEXT
101 bool " Enable before and after context flags (-A, -B and -C)"
102 default y
103 depends on BUSYBOX_CONFIG_GREP
104 help
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).
108
109config BUSYBOX_CONFIG_XARGS
110 bool "xargs"
111 default y
112 help
113 xargs is used to execute a specified command on
114 every item from standard input.
115
116config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
117 bool " Enable prompt and confirmation option -p"
118 default y
119 depends on BUSYBOX_CONFIG_XARGS
120 help
121 Support prompt the user about whether to run each command
122 line and read a line from the terminal.
123
124config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_QUOTES
125 bool " Enable support single and double quotes and backslash"
126 default y
127 depends on BUSYBOX_CONFIG_XARGS
128 help
129 Default xargs unsupport single and double quotes
130 and backslash for can use aruments with spaces.
131
132config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT
133 bool " Enable support options -x"
134 default y
135 depends on BUSYBOX_CONFIG_XARGS
136 help
137 Enable support exit if the size (see the -s or -n option)
138 is exceeded.
139
140config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
141 bool " Enable options -0"
142 default y
143 depends on BUSYBOX_CONFIG_XARGS
144 help
145 Enable input filenames are terminated by a null character
146 instead of by whitespace, and the quotes and backslash
147 are not special.
148
149endmenu
Note: See TracBrowser for help on using the repository browser.