blob: 0f1f5f1891304e2789c77ceb262b750288cdffa9 [file] [log] [blame]
Eric Andersen17d49ef1999-10-06 20:25:32 +00001/*
2 * Mini find implementation for busybox
3 *
Eric Andersenc4996011999-10-20 22:08:37 +00004 *
5 * Copyright (C) 1999 by Lineo, inc.
6 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
Eric Andersen17d49ef1999-10-06 20:25:32 +00007 *
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
Eric Andersenaa0765e1999-10-22 04:30:20 +000024#include "internal.h"
25#include "regexp.h"
Eric Andersen17d49ef1999-10-06 20:25:32 +000026#include <stdio.h>
27#include <unistd.h>
28#include <dirent.h>
Eric Andersen17d49ef1999-10-06 20:25:32 +000029
30
31static char* pattern=NULL;
Eric Andersenaa0765e1999-10-22 04:30:20 +000032static char* directory=".";
Eric Andersenf811e071999-10-09 00:25:00 +000033static int dereferenceFlag=FALSE;
Eric Andersen17d49ef1999-10-06 20:25:32 +000034
Eric Andersend73dc5b1999-11-10 23:13:02 +000035static const char find_usage[] = "find [PATH...] [EXPRESSION]\n\n"
36"Search for files in a directory hierarchy. The default PATH is\n"
37"the current directory; default EXPRESSION is '-print'\n\n"
38"\nEXPRESSION may consist of:\n"
39"\t-follow\n\t\tDereference symbolic links.\n"
40"\t-name PATTERN\n\t\tFile name (with leading directories removed) matches PATTERN.\n"
41"\t-print\n\t\tprint the full file name followed by a newline to stdout.\n\n"
42#if defined BB_REGEXP
43"This version of find matches full regular expresions.\n";
44#else
45"This version of find matches strings (not regular expresions).\n";
46#endif
Eric Andersen17d49ef1999-10-06 20:25:32 +000047
48
49
Eric Andersen9b587181999-10-17 05:43:39 +000050static int fileAction(const char *fileName, struct stat* statbuf)
Eric Andersen17d49ef1999-10-06 20:25:32 +000051{
52 if (pattern==NULL)
53 fprintf(stdout, "%s\n", fileName);
Eric Andersen6b6b3f61999-10-28 16:06:25 +000054 else if (find_match((char*)fileName, pattern, TRUE) == TRUE)
Eric Andersen17d49ef1999-10-06 20:25:32 +000055 fprintf(stdout, "%s\n", fileName);
56 return( TRUE);
57}
58
Eric Andersen17d49ef1999-10-06 20:25:32 +000059int find_main(int argc, char **argv)
60{
Eric Andersen17d49ef1999-10-06 20:25:32 +000061 /* peel off the "find" */
62 argc--;
63 argv++;
64
Eric Andersenaa0765e1999-10-22 04:30:20 +000065 if ( argc > 0 && **argv != '-') {
Eric Andersen17d49ef1999-10-06 20:25:32 +000066 directory=*argv;
67 argc--;
68 argv++;
69 }
70
71 /* Parse any options */
Eric Andersenaa0765e1999-10-22 04:30:20 +000072 while (argc > 0 && **argv == '-') {
Eric Andersen17d49ef1999-10-06 20:25:32 +000073 int stopit=FALSE;
74 while (*++(*argv) && stopit==FALSE) switch (**argv) {
75 case 'f':
76 if (strcmp(*argv, "follow")==0) {
77 argc--;
78 argv++;
79 dereferenceFlag=TRUE;
80 }
81 break;
82 case 'n':
83 if (strcmp(*argv, "name")==0) {
84 if (argc-- > 1) {
85 pattern=*(++argv);
86 stopit=-TRUE;
87 } else {
Eric Andersenb0e9a701999-10-18 22:28:26 +000088 usage (find_usage);
Eric Andersen17d49ef1999-10-06 20:25:32 +000089 }
90 }
91 break;
92 case '-':
93 /* Ignore all long options */
94 break;
95 default:
Eric Andersenb0e9a701999-10-18 22:28:26 +000096 usage (find_usage);
Eric Andersen17d49ef1999-10-06 20:25:32 +000097 }
98 if (argc-- > 1)
99 argv++;
100 if (**argv != '-')
101 break;
102 else
103 break;
104 }
105
Eric Andersenaa0765e1999-10-22 04:30:20 +0000106 if (recursiveAction(directory, TRUE, FALSE, FALSE,
107 fileAction, fileAction) == FALSE) {
108 exit( FALSE);
109 }
110
Eric Andersen17d49ef1999-10-06 20:25:32 +0000111 exit(TRUE);
112}