blob: 12387a44e3436fa40c949b348d91528dfb59d180 [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
Paul Foxd7384292006-05-12 14:47:20 +000014config CONFIG_FEATURE_FIND_PRINT0
15 bool "Enable -print0 option"
16 default y
17 depends on CONFIG_FIND
18 help
19 Causes output names to be separated by a null character
20 rather than a newline. This allows names that contain
21 newlines and other whitespace to be more easily
22 interpreted by other programs.
23
Eric Andersenc9f20d92002-12-05 08:41:41 +000024config CONFIG_FEATURE_FIND_MTIME
Rob Landley2ec922e2006-04-13 23:22:16 +000025 bool "Enable modified time matching (-mtime) option"
Eric Andersenc9f20d92002-12-05 08:41:41 +000026 default y
27 depends on CONFIG_FIND
28 help
Eric Andersenfb0c6af2003-07-14 19:18:43 +000029 Allow searching based on the modification time of
Paul Fox72d1a232006-01-13 21:05:41 +000030 files, in days.
31
32config CONFIG_FEATURE_FIND_MMIN
Rob Landley2ec922e2006-04-13 23:22:16 +000033 bool "Enable modified time matching (-min) option"
Paul Fox72d1a232006-01-13 21:05:41 +000034 default y
35 depends on CONFIG_FIND
36 help
37 Allow searching based on the modification time of
38 files, in minutes.
Eric Andersenc9f20d92002-12-05 08:41:41 +000039
40config CONFIG_FEATURE_FIND_PERM
Rob Landley2ec922e2006-04-13 23:22:16 +000041 bool "Enable permissions matching (-perm) option"
Eric Andersenc9f20d92002-12-05 08:41:41 +000042 default y
43 depends on CONFIG_FIND
44 help
Eric Andersenfb0c6af2003-07-14 19:18:43 +000045 Enable searching based on file permissions.
Eric Andersenc9f20d92002-12-05 08:41:41 +000046
47config CONFIG_FEATURE_FIND_TYPE
Rob Landley2ec922e2006-04-13 23:22:16 +000048 bool "Enable filetype matching (-type) option"
Eric Andersenc9f20d92002-12-05 08:41:41 +000049 default y
50 depends on CONFIG_FIND
51 help
Eric Andersenfb0c6af2003-07-14 19:18:43 +000052 Enable searching based on file type (file,
53 directory, socket, device, etc.).
Eric Andersenc9f20d92002-12-05 08:41:41 +000054
55config CONFIG_FEATURE_FIND_XDEV
Rob Landley2ec922e2006-04-13 23:22:16 +000056 bool "Enable stay in filesystem (-xdev) option"
Eric Andersenc9f20d92002-12-05 08:41:41 +000057 default y
58 depends on CONFIG_FIND
59 help
Eric Andersen88c916b2003-10-22 09:58:56 +000060 This option will allow find to restrict searches to a single
Eric Andersenfb0c6af2003-07-14 19:18:43 +000061 filesystem.
Eric Andersenc9f20d92002-12-05 08:41:41 +000062
Eric Andersen97d86f22003-01-23 05:27:42 +000063config CONFIG_FEATURE_FIND_NEWER
Rob Landley2ec922e2006-04-13 23:22:16 +000064 bool "Enable -newer option for comparing file mtimes"
Eric Andersen97d86f22003-01-23 05:27:42 +000065 default y
66 depends on CONFIG_FIND
67 help
68 Support the 'find -newer' option for finding any files which have
69 a modified time that is more recent than the specified FILE.
70
71config CONFIG_FEATURE_FIND_INUM
Rob Landley2ec922e2006-04-13 23:22:16 +000072 bool "Enable inode number matching (-inum) option"
Eric Andersen97d86f22003-01-23 05:27:42 +000073 default y
74 depends on CONFIG_FIND
75 help
Eric Andersen88c916b2003-10-22 09:58:56 +000076 Support the 'find -inum' option for searching by inode number.
Eric Andersen97d86f22003-01-23 05:27:42 +000077
Rob Landley5d3a0e82005-10-04 03:34:39 +000078config CONFIG_FEATURE_FIND_EXEC
Rob Landley2ec922e2006-04-13 23:22:16 +000079 bool "Enable (-exec) option allowing execution of commands"
Rob Landley5d3a0e82005-10-04 03:34:39 +000080 default y
81 depends on CONFIG_FIND
82 help
83 Support the 'find -exec' option for executing commands based upon
84 the files matched.
85
Eric Andersenc9f20d92002-12-05 08:41:41 +000086config CONFIG_GREP
87 bool "grep"
88 default n
89 help
Eric Andersen65e20a32003-07-05 07:52:35 +000090 grep is used to search files for a specified pattern.
Eric Andersenc9f20d92002-12-05 08:41:41 +000091
92config CONFIG_FEATURE_GREP_EGREP_ALIAS
Rob Landley2ec922e2006-04-13 23:22:16 +000093 bool "Support extended regular expressions (egrep & grep -E)"
Eric Andersenc9f20d92002-12-05 08:41:41 +000094 default y
95 depends on CONFIG_GREP
96 help
Eric Andersenfb0c6af2003-07-14 19:18:43 +000097 Enabled support for extended regular expressions. Extended
98 regular expressions allow for alternation (foo|bar), grouping,
99 and various repetition operators.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000100
Glenn L McGrathc91ce572003-04-27 02:43:54 +0000101config CONFIG_FEATURE_GREP_FGREP_ALIAS
Rob Landley2ec922e2006-04-13 23:22:16 +0000102 bool "Alias fgrep to grep -F"
Glenn L McGrathc91ce572003-04-27 02:43:54 +0000103 default y
104 depends on CONFIG_GREP
105 help
Mike Frysinger15ca5862005-07-31 22:41:05 +0000106 fgrep sees the search pattern as a normal string rather than
Glenn L McGrathc91ce572003-04-27 02:43:54 +0000107 regular expressions.
Mike Frysinger15ca5862005-07-31 22:41:05 +0000108 grep -F is always builtin, this just creates the fgrep alias.
Glenn L McGrathc91ce572003-04-27 02:43:54 +0000109
Eric Andersenc9f20d92002-12-05 08:41:41 +0000110config CONFIG_FEATURE_GREP_CONTEXT
Rob Landley2ec922e2006-04-13 23:22:16 +0000111 bool "Enable before and after context flags (-A, -B and -C)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000112 default y
113 depends on CONFIG_GREP
114 help
Eric Andersene5642112003-07-14 19:37:08 +0000115 Print the specified number of leading (-B) and/or trailing (-A)
116 context surrounding our matching lines.
117 Print the specified number of context lines (-C).
Eric Andersenc9f20d92002-12-05 08:41:41 +0000118
119config CONFIG_XARGS
120 bool "xargs"
121 default n
122 help
Eric Andersen65e20a32003-07-05 07:52:35 +0000123 xargs is used to execute a specified command on
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000124 every item from standard input.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000125
Glenn L McGrathd12061b2003-10-10 23:15:23 +0000126config CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
Rob Landley2ec922e2006-04-13 23:22:16 +0000127 bool "Enable prompt and confirmation option -p"
Glenn L McGrathd12061b2003-10-10 23:15:23 +0000128 default n
Glenn L McGrath99825962003-10-09 11:06:45 +0000129 depends on CONFIG_XARGS
130 help
Glenn L McGrathd12061b2003-10-10 23:15:23 +0000131 Support prompt the user about whether to run each command
132 line and read a line from the terminal.
133
134config CONFIG_FEATURE_XARGS_SUPPORT_QUOTES
Rob Landley2ec922e2006-04-13 23:22:16 +0000135 bool "Enable support single and double quotes and backslash"
Glenn L McGrathd12061b2003-10-10 23:15:23 +0000136 default n
137 depends on CONFIG_XARGS
138 help
139 Default xargs unsupport single and double quotes
140 and backslash for can use aruments with spaces.
141
142config CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT
Rob Landley2ec922e2006-04-13 23:22:16 +0000143 bool "Enable support options -x"
Glenn L McGrathd12061b2003-10-10 23:15:23 +0000144 default n
145 depends on CONFIG_XARGS
146 help
147 Enable support exit if the size (see the -s or -n option)
148 is exceeded.
149
150config CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
Mike Frysinger441bfbf2006-07-03 05:19:44 +0000151 bool "Enable null terminated option -0"
Glenn L McGrathd12061b2003-10-10 23:15:23 +0000152 default n
153 depends on CONFIG_XARGS
154 help
155 Enable input filenames are terminated by a null character
156 instead of by whitespace, and the quotes and backslash
157 are not special.
Glenn L McGrath99825962003-10-09 11:06:45 +0000158
Eric Andersenc9f20d92002-12-05 08:41:41 +0000159endmenu