Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 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 |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 12 | find is used to search your system to find specified files. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 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 | Please submit a patch to add help text for this item. |
| 20 | |
| 21 | config CONFIG_FEATURE_FIND_PERM |
| 22 | bool " Enable permissions matching (-perm) option" |
| 23 | default y |
| 24 | depends on CONFIG_FIND |
| 25 | help |
| 26 | Please submit a patch to add help text for this item. |
| 27 | |
| 28 | config CONFIG_FEATURE_FIND_TYPE |
| 29 | bool " Enable filetype matching (-type) option" |
| 30 | default y |
| 31 | depends on CONFIG_FIND |
| 32 | help |
| 33 | Please submit a patch to add help text for this item. |
| 34 | |
| 35 | config CONFIG_FEATURE_FIND_XDEV |
| 36 | bool " Enable stay in filesystem (-xdev) option" |
| 37 | default y |
| 38 | depends on CONFIG_FIND |
| 39 | help |
| 40 | Please submit a patch to add help text for this item. |
| 41 | |
Eric Andersen | 97d86f2 | 2003-01-23 05:27:42 +0000 | [diff] [blame] | 42 | config CONFIG_FEATURE_FIND_NEWER |
| 43 | bool " Enable -newer option for comparing file mtimes" |
| 44 | default y |
| 45 | depends on CONFIG_FIND |
| 46 | help |
| 47 | Support the 'find -newer' option for finding any files which have |
| 48 | a modified time that is more recent than the specified FILE. |
| 49 | |
| 50 | config CONFIG_FEATURE_FIND_INUM |
| 51 | bool " Enable inode number matching (-inum) option" |
| 52 | default y |
| 53 | depends on CONFIG_FIND |
| 54 | help |
| 55 | Support the 'fine -inum' option for searching by inode number. |
| 56 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 57 | config CONFIG_GREP |
| 58 | bool "grep" |
| 59 | default n |
| 60 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 61 | grep is used to search files for a specified pattern. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 62 | |
| 63 | config CONFIG_FEATURE_GREP_EGREP_ALIAS |
| 64 | bool " Support extended regular expressions (egrep & grep -E)" |
| 65 | default y |
| 66 | depends on CONFIG_GREP |
| 67 | help |
| 68 | Please submit a patch to add help text for this item. |
| 69 | |
Glenn L McGrath | c91ce57 | 2003-04-27 02:43:54 +0000 | [diff] [blame] | 70 | config CONFIG_FEATURE_GREP_FGREP_ALIAS |
| 71 | bool " Alias fgrep to grep -f" |
| 72 | default y |
| 73 | depends on CONFIG_GREP |
| 74 | help |
| 75 | fgrep sees the search pattern as a normal sting rather than |
| 76 | regular expressions. |
| 77 | grep -f is always builtin, this just creates the fgrep alias. |
| 78 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 79 | config CONFIG_FEATURE_GREP_CONTEXT |
| 80 | bool " Enable before and after context flags (-A, -B and -C)" |
| 81 | default y |
| 82 | depends on CONFIG_GREP |
| 83 | help |
| 84 | Please submit a patch to add help text for this item. |
| 85 | |
| 86 | config CONFIG_XARGS |
| 87 | bool "xargs" |
| 88 | default n |
| 89 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 90 | xargs is used to execute a specified command on |
| 91 | every item from standard input. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 92 | |
| 93 | endmenu |
| 94 | |