blob: 05fcca151c82dc29a5aa95529a5fc0ab81b572ae [file] [log] [blame]
Eric Andersenc9f20d92002-12-05 08:41:41 +00001#
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
Eric Andersen65e20a32003-07-05 07:52:35 +000012 find is used to search your system to find specified files.
Eric Andersenc9f20d92002-12-05 08:41:41 +000013
14config CONFIG_FEATURE_FIND_MTIME
15 bool " Enable modified time matching (-mtime) option"
16 default y
17 depends on CONFIG_FIND
18 help
Eric Andersenfb0c6af2003-07-14 19:18:43 +000019 Allow searching based on the modification time of
20 files.
Eric Andersenc9f20d92002-12-05 08:41:41 +000021
22config CONFIG_FEATURE_FIND_PERM
23 bool " Enable permissions matching (-perm) option"
24 default y
25 depends on CONFIG_FIND
26 help
Eric Andersenfb0c6af2003-07-14 19:18:43 +000027 Enable searching based on file permissions.
Eric Andersenc9f20d92002-12-05 08:41:41 +000028
29config CONFIG_FEATURE_FIND_TYPE
30 bool " Enable filetype matching (-type) option"
31 default y
32 depends on CONFIG_FIND
33 help
Eric Andersenfb0c6af2003-07-14 19:18:43 +000034 Enable searching based on file type (file,
35 directory, socket, device, etc.).
Eric Andersenc9f20d92002-12-05 08:41:41 +000036
37config CONFIG_FEATURE_FIND_XDEV
38 bool " Enable stay in filesystem (-xdev) option"
39 default y
40 depends on CONFIG_FIND
41 help
Eric Andersenfb0c6af2003-07-14 19:18:43 +000042 This option will restrict find to a single
43 filesystem.
Eric Andersenc9f20d92002-12-05 08:41:41 +000044
Eric Andersen97d86f22003-01-23 05:27:42 +000045config 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 'fine -inum' option for searching by inode number.
59
Eric Andersenc9f20d92002-12-05 08:41:41 +000060config CONFIG_GREP
61 bool "grep"
62 default n
63 help
Eric Andersen65e20a32003-07-05 07:52:35 +000064 grep is used to search files for a specified pattern.
Eric Andersenc9f20d92002-12-05 08:41:41 +000065
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
Eric Andersenfb0c6af2003-07-14 19:18:43 +000071 Enabled support for extended regular expressions. Extended
72 regular expressions allow for alternation (foo|bar), grouping,
73 and various repetition operators.
Eric Andersenc9f20d92002-12-05 08:41:41 +000074
Glenn L McGrathc91ce572003-04-27 02:43:54 +000075config 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 sting rather than
81 regular expressions.
82 grep -f is always builtin, this just creates the fgrep alias.
83
Eric Andersenc9f20d92002-12-05 08:41:41 +000084config 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
Eric Andersene5642112003-07-14 19:37:08 +000089 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).
Eric Andersenc9f20d92002-12-05 08:41:41 +000092
93config CONFIG_XARGS
94 bool "xargs"
95 default n
96 help
Eric Andersen65e20a32003-07-05 07:52:35 +000097 xargs is used to execute a specified command on
98 every item from standard input.
Eric Andersenc9f20d92002-12-05 08:41:41 +000099
100endmenu
101