aboutsummaryrefslogtreecommitdiff
path: root/find.c
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-02-10 07:31:15 +0000
committerErik Andersen <andersen@codepoet.org>2000-02-10 07:31:15 +0000
commit4d0543138ebb30aad55ba8083ea362eafb0aac33 (patch)
tree97c6724691dcbc940e410350b9f75d120d9f6d8b /find.c
parentfb1793f03cbc51885678ee1ce9d0e81bd0e246f7 (diff)
downloadbusybox-4d0543138ebb30aad55ba8083ea362eafb0aac33.tar.gz
More minor touchups.
-Erik
Diffstat (limited to 'find.c')
-rw-r--r--find.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/find.c b/find.c
index 6346d454f..2c1039b53 100644
--- a/find.c
+++ b/find.c
@@ -39,13 +39,7 @@ static const char find_usage[] = "find [PATH...] [EXPRESSION]\n\n"
"\nEXPRESSION may consist of:\n"
"\t-follow\n\t\tDereference symbolic links.\n"
"\t-name PATTERN\n\t\tFile name (with leading directories removed) matches PATTERN.\n"
- "\t-print\n\t\tprint the full file name followed by a newline to stdout.\n\n"
-#if defined BB_REGEXP
- "This version of find matches full regular expresions.\n";
-#else
- "This version of find matches strings (not regular expresions).\n";
-#endif
-
+ "\t-print\n\t\tprint the full file name followed by a newline to stdout.\n";
static int fileAction(const char *fileName, struct stat *statbuf)