diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/include/usage.h b/include/usage.h index 8c438e285..1c4442e33 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -948,15 +948,15 @@ | |||
948 | USE_FEATURE_FIND_MAXDEPTH( \ | 948 | USE_FEATURE_FIND_MAXDEPTH( \ |
949 | "\n -maxdepth N Descend at most N levels. -maxdepth 0 applies" \ | 949 | "\n -maxdepth N Descend at most N levels. -maxdepth 0 applies" \ |
950 | "\n tests/actions to command line arguments only") \ | 950 | "\n tests/actions to command line arguments only") \ |
951 | "\n -name PATTERN File name (leading directories removed) matches PATTERN" \ | 951 | "\n -name PATTERN File name (w/o directory name) matches PATTERN" \ |
952 | "\n -print Print (default and assumed)" \ | 952 | USE_FEATURE_FIND_PATH( \ |
953 | USE_FEATURE_FIND_PRINT0( \ | 953 | "\n -path PATTERN Path matches PATTERN") \ |
954 | "\n -print0 Delimit output with null characters rather than" \ | 954 | USE_FEATURE_FIND_REGEX( \ |
955 | "\n newlines") \ | 955 | "\n -regex PATTERN Path matches regex PATTERN") \ |
956 | USE_FEATURE_FIND_TYPE( \ | 956 | USE_FEATURE_FIND_TYPE( \ |
957 | "\n -type X Filetype matches X (where X is one of: f,d,l,b,c,...)") \ | 957 | "\n -type X File type is X (X is one of: f,d,l,b,c,...)") \ |
958 | USE_FEATURE_FIND_PERM( \ | 958 | USE_FEATURE_FIND_PERM( \ |
959 | "\n -perm PERMS Permissions match any of (+NNN), all of (-NNN)," \ | 959 | "\n -perm NNN Permissions match any of (+NNN), all of (-NNN)," \ |
960 | "\n or exactly (NNN)") \ | 960 | "\n or exactly (NNN)") \ |
961 | USE_FEATURE_FIND_MTIME( \ | 961 | USE_FEATURE_FIND_MTIME( \ |
962 | "\n -mtime DAYS Modified time is greater than (+N), less than (-N)," \ | 962 | "\n -mtime DAYS Modified time is greater than (+N), less than (-N)," \ |
@@ -968,23 +968,26 @@ | |||
968 | "\n -newer FILE Modified time is more recent than FILE's") \ | 968 | "\n -newer FILE Modified time is more recent than FILE's") \ |
969 | USE_FEATURE_FIND_INUM( \ | 969 | USE_FEATURE_FIND_INUM( \ |
970 | "\n -inum N File has inode number N") \ | 970 | "\n -inum N File has inode number N") \ |
971 | USE_FEATURE_FIND_EXEC( \ | ||
972 | "\n -exec CMD Execute CMD with all instances of {} replaced by the" \ | ||
973 | "\n files matching EXPRESSION") \ | ||
974 | USE_FEATURE_FIND_USER( \ | 971 | USE_FEATURE_FIND_USER( \ |
975 | "\n -user NAME File is owned by user NAME (numeric user ID allowed)") \ | 972 | "\n -user NAME File is owned by user NAME (numeric user ID allowed)") \ |
976 | USE_FEATURE_FIND_GROUP( \ | 973 | USE_FEATURE_FIND_GROUP( \ |
977 | "\n -group NAME File belongs to group NAME (numeric group ID allowed)") \ | 974 | "\n -group NAME File belongs to group NAME (numeric group ID allowed)") \ |
978 | USE_FEATURE_FIND_DEPTH( \ | 975 | USE_FEATURE_FIND_DEPTH( \ |
979 | "\n -depth Process directory after traversing it") \ | 976 | "\n -depth Process directory name after traversing it") \ |
980 | USE_FEATURE_FIND_SIZE( \ | 977 | USE_FEATURE_FIND_SIZE( \ |
981 | "\n -size N File size is N") \ | 978 | "\n -size N[bck] File size is N (c:bytes,k:kbytes,b:512 bytes(def.))." \ |
979 | "\n +/-N: file size is bigger/smaller than N") \ | ||
980 | "\n -print Print (default and assumed)" \ | ||
981 | USE_FEATURE_FIND_PRINT0( \ | ||
982 | "\n -print0 Delimit output with null characters rather than" \ | ||
983 | "\n newlines") \ | ||
984 | USE_FEATURE_FIND_EXEC( \ | ||
985 | "\n -exec CMD ARG ; Execute CMD with all instances of {} replaced by the" \ | ||
986 | "\n matching files") \ | ||
982 | USE_FEATURE_FIND_PRUNE( \ | 987 | USE_FEATURE_FIND_PRUNE( \ |
983 | "\n -prune Stop traversing current subtree") \ | 988 | "\n -prune Stop traversing current subtree") \ |
984 | USE_FEATURE_FIND_DELETE( \ | 989 | USE_FEATURE_FIND_DELETE( \ |
985 | "\n -delete Delete files, turns on -depth option") \ | 990 | "\n -delete Delete files, turns on -depth option") \ |
986 | USE_FEATURE_FIND_PATH( \ | ||
987 | "\n -path Path matches PATTERN") \ | ||
988 | USE_FEATURE_FIND_PAREN( \ | 991 | USE_FEATURE_FIND_PAREN( \ |
989 | "\n (EXPR) Group an expression") \ | 992 | "\n (EXPR) Group an expression") \ |
990 | 993 | ||