Oops. Forgot the usleep.c file.
[oweals/busybox.git] / find.c
diff --git a/find.c b/find.c
index ab9ebf43476350fc82d7d5a55a79d964feb710c3..c23ac5f46b3b21d7e4dc6a45a1a10dd6cc6fd572 100644 (file)
--- a/find.c
+++ b/find.c
@@ -1,3 +1,4 @@
+/* vi: set sw=4 ts=4: */
 /*
  * Mini find implementation for busybox
  *
 #include <dirent.h>
 
 
-static char* pattern=NULL;
-static char* directory=".";
-static int dereferenceFlag=FALSE;
+static char *pattern = NULL;
+static char *directory = ".";
+static int dereferenceFlag = FALSE;
 
-static const char find_usage[] = "find [path...] [expression]\n"
-"default path is the current directory; default expression is -print\n"
-"expression may consist of:\n";
+static const char find_usage[] = "find [PATH...] [EXPRESSION]\n\n"
+       "Search for files in a directory hierarchy.  The default PATH is\n"
+       "the current directory; default EXPRESSION is '-print'\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";
 
 
-
-static int fileAction(const char *fileName, struct stat* statbuf)
+static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
 {
-    if (pattern==NULL)
-       fprintf(stdout, "%s\n", fileName);
-    else if (find_match((char*)fileName, pattern, TRUE) == TRUE)
-       fprintf(stdout, "%s\n", fileName);
-    return( TRUE);
+       if (pattern == NULL)
+               fprintf(stdout, "%s\n", fileName);
+       else {
+               char *tmp = strrchr(fileName, '/');
+
+               if (tmp == NULL)
+                       tmp = (char *) fileName;
+               else
+                       tmp++;
+               if (check_wildcard_match(tmp, pattern) == TRUE)
+                       fprintf(stdout, "%s\n", fileName);
+       }
+       return (TRUE);
 }
 
 int find_main(int argc, char **argv)
 {
-    /* peel off the "find" */
-    argc--;
-    argv++;
-
-    if ( argc > 0 && **argv != '-') {
-       directory=*argv;
+       /* peel off the "find" */
        argc--;
        argv++;
-    }
 
-    /* Parse any options */
-    while (argc > 0 && **argv == '-') {
-       int stopit=FALSE;
-       while (*++(*argv) && stopit==FALSE) switch (**argv) {
-           case 'f':
-               if (strcmp(*argv, "follow")==0) {
-                   argc--;
-                   argv++;
-                   dereferenceFlag=TRUE;
-               }
-               break;
-           case 'n':
-               if (strcmp(*argv, "name")==0) {
-                   if (argc-- > 1) {
-                       pattern=*(++argv);
-                       stopit=-TRUE;
-                   } else {
-                       usage (find_usage);
-                   }
-               }
-               break;
-           case '-':
-               /* Ignore all long options */
-               break;
-           default:
-               usage (find_usage);
+       if (argc > 0 && **argv != '-') {
+               directory = *argv;
+               argc--;
+               argv++;
        }
-       if (argc-- > 1)
-           argv++;
-           if (**argv != '-')
-               break;
-       else
-           break;
-    }
 
-    if (recursiveAction(directory, TRUE, FALSE, FALSE,
-                          fileAction, fileAction) == FALSE) {
-       exit( FALSE);
-    }
+       /* Parse any options */
+       while (argc > 0 && **argv == '-') {
+               int stopit = FALSE;
+
+               while (*++(*argv) && stopit == FALSE)
+                       switch (**argv) {
+                       case 'f':
+                               if (strcmp(*argv, "follow") == 0) {
+                                       argc--;
+                                       argv++;
+                                       dereferenceFlag = TRUE;
+                               }
+                               break;
+                       case 'n':
+                               if (strcmp(*argv, "name") == 0) {
+                                       if (argc-- > 1) {
+                                               pattern = *(++argv);
+                                               stopit = TRUE;
+                                       } else {
+                                               usage(find_usage);
+                                       }
+                               }
+                               break;
+                       case '-':
+                               /* Ignore all long options */
+                               break;
+                       default:
+                               usage(find_usage);
+                       }
+               if (argc-- > 1)
+                       argv++;
+               if (**argv != '-')
+                       break;
+               else
+                       break;
+       }
+
+       if (recursiveAction(directory, TRUE, FALSE, FALSE,
+                                               fileAction, fileAction, NULL) == FALSE) {
+               exit(FALSE);
+       }
 
-    exit(TRUE);
+       exit(TRUE);
 }