diff options
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 6346d45..2c1039b 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) |