diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-02-10 07:31:15 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-02-10 07:31:15 +0000 |
commit | 4d0543138ebb30aad55ba8083ea362eafb0aac33 (patch) | |
tree | 97c6724691dcbc940e410350b9f75d120d9f6d8b /findutils/find.c | |
parent | fb1793f03cbc51885678ee1ce9d0e81bd0e246f7 (diff) | |
download | busybox-w32-4d0543138ebb30aad55ba8083ea362eafb0aac33.tar.gz busybox-w32-4d0543138ebb30aad55ba8083ea362eafb0aac33.tar.bz2 busybox-w32-4d0543138ebb30aad55ba8083ea362eafb0aac33.zip |
More minor touchups.
-Erik
Diffstat (limited to 'findutils/find.c')
-rw-r--r-- | findutils/find.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/findutils/find.c b/findutils/find.c index 6346d454f..2c1039b53 100644 --- a/findutils/find.c +++ b/findutils/find.c | |||
@@ -39,13 +39,7 @@ static const char find_usage[] = "find [PATH...] [EXPRESSION]\n\n" | |||
39 | "\nEXPRESSION may consist of:\n" | 39 | "\nEXPRESSION may consist of:\n" |
40 | "\t-follow\n\t\tDereference symbolic links.\n" | 40 | "\t-follow\n\t\tDereference symbolic links.\n" |
41 | "\t-name PATTERN\n\t\tFile name (with leading directories removed) matches PATTERN.\n" | 41 | "\t-name PATTERN\n\t\tFile name (with leading directories removed) matches PATTERN.\n" |
42 | "\t-print\n\t\tprint the full file name followed by a newline to stdout.\n\n" | 42 | "\t-print\n\t\tprint the full file name followed by a newline to stdout.\n"; |
43 | #if defined BB_REGEXP | ||
44 | "This version of find matches full regular expresions.\n"; | ||
45 | #else | ||
46 | "This version of find matches strings (not regular expresions).\n"; | ||
47 | #endif | ||
48 | |||
49 | 43 | ||
50 | 44 | ||
51 | static int fileAction(const char *fileName, struct stat *statbuf) | 45 | static int fileAction(const char *fileName, struct stat *statbuf) |