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-4d0543138ebb30aad55ba8083ea362eafb0aac33.tar.gz |
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" "\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) |