aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2011-02-12 17:13:03 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2011-02-12 17:13:03 +0100
commit56cdb2fc3725ede59edc53e53127912c186d409b (patch)
tree795ee36a498a2e429ae6395d5152626b4fbf063d
parent4dea9eb07f27384bdbfa39d7fa58cff776b583fa (diff)
downloadbusybox-w32-56cdb2fc3725ede59edc53e53127912c186d409b.tar.gz
busybox-w32-56cdb2fc3725ede59edc53e53127912c186d409b.tar.bz2
busybox-w32-56cdb2fc3725ede59edc53e53127912c186d409b.zip
find: yet another tweak to help text
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--findutils/find.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/findutils/find.c b/findutils/find.c
index a3dd632a7..69fa873cc 100644
--- a/findutils/find.c
+++ b/findutils/find.c
@@ -1044,7 +1044,7 @@ static action*** parse_params(char **argv)
1044} 1044}
1045 1045
1046//usage:#define find_trivial_usage 1046//usage:#define find_trivial_usage
1047//usage: "[OPTIONS] [PATH]... [ACTION]..." 1047//usage: "[OPTIONS] [PATH]... [ACTIONS]"
1048//usage:#define find_full_usage "\n\n" 1048//usage:#define find_full_usage "\n\n"
1049//usage: "Search for files and perform actions on them.\n" 1049//usage: "Search for files and perform actions on them.\n"
1050//usage: "First failed action stops processing of current file.\n" 1050//usage: "First failed action stops processing of current file.\n"
@@ -1063,13 +1063,13 @@ static action*** parse_params(char **argv)
1063//usage: "\n -depth Act on directory *after* traversing it" 1063//usage: "\n -depth Act on directory *after* traversing it"
1064//usage: ) 1064//usage: )
1065//usage: "\n" 1065//usage: "\n"
1066//usage: "\nActions:"
1066//usage: IF_FEATURE_FIND_PAREN( 1067//usage: IF_FEATURE_FIND_PAREN(
1067//usage: "\n ( ACTIONS ) Group actions for -o / -a" 1068//usage: "\n ( ACTIONS ) Group actions for -o / -a"
1068//usage: ) 1069//usage: )
1069//usage: "\n ACT1 [-a] ACT2 If ACT1 fails, stop, else do ACT2" 1070//usage: "\n ACT1 [-a] ACT2 If ACT1 fails, stop, else do ACT2"
1070//usage: "\n ACT1 -o ACT2 If ACT1 succeeds, stop, else do ACT2" 1071//usage: "\n ACT1 -o ACT2 If ACT1 succeeds, stop, else do ACT2"
1071//usage: "\n Note: -a has higher priority than -o" 1072//usage: "\n Note: -a has higher priority than -o"
1072//usage: "\nActions:"
1073//usage: "\n -name PATTERN Match file name (w/o directory name) to PATTERN" 1073//usage: "\n -name PATTERN Match file name (w/o directory name) to PATTERN"
1074//usage: "\n -iname PATTERN Case insensitive -name" 1074//usage: "\n -iname PATTERN Case insensitive -name"
1075//usage: IF_FEATURE_FIND_PATH( 1075//usage: IF_FEATURE_FIND_PATH(
@@ -1119,7 +1119,7 @@ static action*** parse_params(char **argv)
1119//usage: IF_FEATURE_FIND_PRUNE( 1119//usage: IF_FEATURE_FIND_PRUNE(
1120//usage: "\n -prune If current file is directory, don't descend into it" 1120//usage: "\n -prune If current file is directory, don't descend into it"
1121//usage: ) 1121//usage: )
1122//usage: "\n If none of the following actions is specified, -print is assumed" 1122//usage: "\nIf none of the following actions is specified, -print is assumed"
1123//usage: "\n -print Print file name" 1123//usage: "\n -print Print file name"
1124//usage: IF_FEATURE_FIND_PRINT0( 1124//usage: IF_FEATURE_FIND_PRINT0(
1125//usage: "\n -print0 Print file name, NUL terminated" 1125//usage: "\n -print0 Print file name, NUL terminated"