aboutsummaryrefslogtreecommitdiff
path: root/findutils/Config.in
diff options
context:
space:
mode:
Diffstat (limited to 'findutils/Config.in')
-rw-r--r--findutils/Config.in42
1 files changed, 39 insertions, 3 deletions
diff --git a/findutils/Config.in b/findutils/Config.in
index dd8a8c9bb..09a5bb3cb 100644
--- a/findutils/Config.in
+++ b/findutils/Config.in
@@ -90,14 +90,50 @@ config FEATURE_FIND_USER
90 help 90 help
91 Support the 'find -user' option for searching by username or uid. 91 Support the 'find -user' option for searching by username or uid.
92 92
93config FEATURE_FIND_GROUP
94 bool "Enable group/gid matching (-group) option"
95 default y
96 depends on FIND
97 help
98 Support the 'find -group' option for searching by group name or gid.
99
93config FEATURE_FIND_NOT 100config FEATURE_FIND_NOT
94 bool "Enable the 'not' (!) operator" 101 bool "Enable the 'not' (!) operator"
95 default y 102 default y
96 depends on FIND 103 depends on FIND
97 help 104 help
98 Support the '!' operator to invert the test results. If 'Enable 105 Support the '!' operator to invert the test results.
99 full-blown desktop' is enabled, then will also support the 106 If 'Enable full-blown desktop' is enabled, then will also support
100 non-POSIX notation '-not'. 107 the non-POSIX notation '-not'.
108
109config FEATURE_FIND_DEPTH
110 bool "Enable the -depth option"
111 default y
112 depends on FIND
113 help
114 Process each directory's contents before the directory itself.
115
116config FEATURE_FIND_PAREN
117 bool "Enable parens in options"
118 default y
119 depends on FIND
120 help
121 Enable usage of parens '(' to specify logical order of arguments.
122
123config FEATURE_FIND_SIZE
124 bool "Enable (-size) option allowing matching for file size"
125 default y
126 depends on FIND
127 help
128 Support the 'find -size' option for searching by file size.
129
130config FEATURE_FIND_PRUNE
131 bool "Enable (-prune) option allowing to exclude subdirectories"
132 default y
133 depends on FIND
134 help
135 If the file is a directory, dont descend into it. Useful for
136 exclusion .svn and CVS directories.
101 137
102config GREP 138config GREP
103 bool "grep" 139 bool "grep"