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 | |
parent | 5f42d2686559e8c14a08fce59fbbb0e77e584d7a (diff) | |
download | busybox-w32-2f7b923f5c46de0840d7a683b75b6e8561461135.tar.gz busybox-w32-2f7b923f5c46de0840d7a683b75b6e8561461135.tar.bz2 busybox-w32-2f7b923f5c46de0840d7a683b75b6e8561461135.zip |
find: improve usage text (Natanael Copa <natanael.copa@gmail.com>)
-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 @@ | |||
958 | ) USE_FEATURE_FIND_EXEC( \ | 958 | ) USE_FEATURE_FIND_EXEC( \ |
959 | "\n -exec CMD Execute CMD with all instances of {} replaced by the" \ | 959 | "\n -exec CMD Execute CMD with all instances of {} replaced by the" \ |
960 | "\n files matching EXPRESSION" \ | 960 | "\n files matching EXPRESSION" \ |
961 | ) USE_FEATURE_FIND_USER( \ | ||
962 | "\n -user NAME File is owned by user NAME (numeric user ID allowed)" \ | ||
963 | ) USE_FEATURE_FIND_GROUP( \ | ||
964 | "\n -group NAME File belongs to group NAME (numeric group ID allowed)" \ | ||
965 | ) USE_FEATURE_FIND_DEPTH( \ | ||
966 | "\n -depth Process directory after traversing it" \ | ||
961 | ) USE_FEATURE_FIND_SIZE( \ | 967 | ) USE_FEATURE_FIND_SIZE( \ |
962 | "\n -size N File size is N" \ | 968 | "\n -size N File size is N" \ |
963 | ) USE_FEATURE_FIND_PRUNE( \ | 969 | ) USE_FEATURE_FIND_PRUNE( \ |
964 | "\n -prune Stop traversing current subtree" \ | 970 | "\n -prune Stop traversing current subtree" \ |
965 | ) USE_FEATURE_FIND_PAREN( \ | 971 | ) USE_FEATURE_FIND_PAREN( \ |
966 | "\n (expr) Group" \ | 972 | "\n (EXPR) Group an expression" \ |
967 | ) | 973 | ) |
968 | 974 | ||
969 | #define find_example_usage \ | 975 | #define find_example_usage \ |