diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-05 21:01:06 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-05 21:01:06 +0000 |
commit | 2f7b923f5c46de0840d7a683b75b6e8561461135 (patch) | |
tree | e5585b0d0aff8ef4dc5b5b460e3e9d05bdaeaf8e /include | |
parent | 5f42d2686559e8c14a08fce59fbbb0e77e584d7a (diff) |
find: improve usage text (Natanael Copa <natanael.copa@gmail.com>)
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/usage.h b/include/usage.h index fe4cd903c..048dcbdde 100644 --- a/include/usage.h +++ b/include/usage.h @@ -958,12 +958,18 @@ ) USE_FEATURE_FIND_EXEC( \ "\n -exec CMD Execute CMD with all instances of {} replaced by the" \ "\n files matching EXPRESSION" \ + ) USE_FEATURE_FIND_USER( \ + "\n -user NAME File is owned by user NAME (numeric user ID allowed)" \ + ) USE_FEATURE_FIND_GROUP( \ + "\n -group NAME File belongs to group NAME (numeric group ID allowed)" \ + ) USE_FEATURE_FIND_DEPTH( \ + "\n -depth Process directory after traversing it" \ ) 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" \ + "\n (EXPR) Group an expression" \ ) #define find_example_usage \ |