aboutsummaryrefslogtreecommitdiff
path: root/findutils/Config.in
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-13 10:00:12 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-13 10:00:12 +0000
commit62f0479cf106eab811e1ff5397029d665dd85b53 (patch)
treeac6b61e653ea0372c2c863d0c05da21dc9b6a226 /findutils/Config.in
parent945bd3dee89da895216dbc3113cc9cfb3f71c454 (diff)
downloadbusybox-w32-62f0479cf106eab811e1ff5397029d665dd85b53.tar.gz
busybox-w32-62f0479cf106eab811e1ff5397029d665dd85b53.tar.bz2
busybox-w32-62f0479cf106eab811e1ff5397029d665dd85b53.zip
find: add support for -delete, -path (by Natanael Copa)
Diffstat (limited to 'findutils/Config.in')
-rw-r--r--findutils/Config.in16
1 files changed, 16 insertions, 0 deletions
diff --git a/findutils/Config.in b/findutils/Config.in
index 09a5bb3cb..a32e98922 100644
--- a/findutils/Config.in
+++ b/findutils/Config.in
@@ -135,6 +135,22 @@ config FEATURE_FIND_PRUNE
135 If the file is a directory, dont descend into it. Useful for 135 If the file is a directory, dont descend into it. Useful for
136 exclusion .svn and CVS directories. 136 exclusion .svn and CVS directories.
137 137
138config FEATURE_FIND_DELETE
139 bool "Enable -delete option allowing to delete files"
140 default n
141 depends on FIND && FEATURE_FIND_DEPTH
142 help
143 Support the 'find -delete' option for deleting files and direcotries.
144 WARNING: This option can do much harm if used wrong. Busybox will not
145 try to protect the user from doing stupid things. Use with care.
146
147config FEATURE_FIND_PATH
148 bool "Enable -path option allowing to match pathname patterns"
149 default y
150 depends on FIND
151 help
152 The -path option matches whole pathnames instead of just filenames.
153
138config GREP 154config GREP
139 bool "grep" 155 bool "grep"
140 default n 156 default n