diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-13 10:00:12 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-13 10:00:12 +0000 |
commit | 62f0479cf106eab811e1ff5397029d665dd85b53 (patch) | |
tree | ac6b61e653ea0372c2c863d0c05da21dc9b6a226 /include | |
parent | 945bd3dee89da895216dbc3113cc9cfb3f71c454 (diff) | |
download | busybox-62f0479cf106eab811e1ff5397029d665dd85b53.tar.gz |
find: add support for -delete, -path (by Natanael Copa)
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/usage.h b/include/usage.h index d196afcbf..2fb8112b0 100644 --- a/include/usage.h +++ b/include/usage.h @@ -968,6 +968,10 @@ "\n -size N File size is N" \ ) USE_FEATURE_FIND_PRUNE( \ "\n -prune Stop traversing current subtree" \ + ) USE_FEATURE_FIND_DELETE( \ + "\n -delete Delete files; Turns on -depth option" \ + ) USE_FEATURE_FIND_PATH( \ + "\n -path Path matches PATTERN" \ ) USE_FEATURE_FIND_PAREN( \ "\n (EXPR) Group an expression" \ ) |