diff options
author | Denis Vlasenko | 2007-04-04 23:41:35 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-04-04 23:41:35 +0000 |
commit | 56fce00fc7c11c2b8dabac5ba0ef6a0a8a19dee5 (patch) | |
tree | 7e59e42ff0a038c125a9335ff78953b390fe01ea /include | |
parent | febe3c421109032cdfb36249c54e314d39256ace (diff) | |
download | busybox-56fce00fc7c11c2b8dabac5ba0ef6a0a8a19dee5.zip busybox-56fce00fc7c11c2b8dabac5ba0ef6a0a8a19dee5.tar.gz |
find: un-DESKTOPize (Kai Schwenzfeier <niteblade@gmx.net>)
find: -group, -depth (Natanael Copa <natanael.copa@gmail.com>)
find: make constant array static, declare PARM_xx constants with enum
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/usage.h b/include/usage.h index 8e0da19..1889010 100644 --- a/include/usage.h +++ b/include/usage.h @@ -958,9 +958,11 @@ ) USE_FEATURE_FIND_EXEC( \ "\n -exec CMD Execute CMD with all instances of {} replaced by the" \ "\n files matching EXPRESSION" \ - ) USE_DESKTOP( \ + ) USE_FEATURE_FIND_SIZE( \ "\n -size N File size is N" \ + ) USE_FEATURE_FIND_PRUNE( \ "\n -prune Stop traversing current subtree" \ + ) USE_FEATURE_FIND_PAREN( \ "\n (expr) Group" \ ) |