Ha! Got init working.
[oweals/busybox.git] / find.c
1 /*
2  * Mini find implementation for busybox
3  *
4  *
5  * Copyright (C) 1999 by Lineo, inc.
6  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  */
23
24 #include "internal.h"
25 #include "regexp.h"
26 #include <stdio.h>
27 #include <unistd.h>
28 #include <dirent.h>
29
30
31 static char* pattern=NULL;
32 static char* directory=".";
33 static int dereferenceFlag=FALSE;
34
35 static const char find_usage[] = "find [path...] [expression]\n"
36 "default path is the current directory; default expression is -print\n"
37 "expression may consist of:\n";
38
39
40
41 static int fileAction(const char *fileName, struct stat* statbuf)
42 {
43     if (pattern==NULL)
44         fprintf(stdout, "%s\n", fileName);
45     else if (find_match((char*)fileName, pattern, TRUE) == TRUE)
46         fprintf(stdout, "%s\n", fileName);
47     return( TRUE);
48 }
49
50 int find_main(int argc, char **argv)
51 {
52     /* peel off the "find" */
53     argc--;
54     argv++;
55
56     if ( argc > 0 && **argv != '-') {
57         directory=*argv;
58         argc--;
59         argv++;
60     }
61
62     /* Parse any options */
63     while (argc > 0 && **argv == '-') {
64         int stopit=FALSE;
65         while (*++(*argv) && stopit==FALSE) switch (**argv) {
66             case 'f':
67                 if (strcmp(*argv, "follow")==0) {
68                     argc--;
69                     argv++;
70                     dereferenceFlag=TRUE;
71                 }
72                 break;
73             case 'n':
74                 if (strcmp(*argv, "name")==0) {
75                     if (argc-- > 1) {
76                         pattern=*(++argv);
77                         stopit=-TRUE;
78                     } else {
79                         usage (find_usage);
80                     }
81                 }
82                 break;
83             case '-':
84                 /* Ignore all long options */
85                 break;
86             default:
87                 usage (find_usage);
88         }
89         if (argc-- > 1)
90             argv++;
91             if (**argv != '-')
92                 break;
93         else
94             break;
95     }
96
97     if (recursiveAction(directory, TRUE, FALSE, FALSE,
98                            fileAction, fileAction) == FALSE) {
99         exit( FALSE);
100     }
101
102     exit(TRUE);
103 }