blob: 53b85e6b39d018d1055db0d5343fb5b3e9b95c3d [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersen17d49ef1999-10-06 20:25:32 +00002/*
3 * Mini find implementation for busybox
4 *
Eric Andersenc4996011999-10-20 22:08:37 +00005 *
Erik Andersen61677fe2000-04-13 01:18:56 +00006 * Copyright (C) 1999,2000 by Lineo, inc.
Eric Andersenc4996011999-10-20 22:08:37 +00007 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
Eric Andersen17d49ef1999-10-06 20:25:32 +00008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
24
Eric Andersenaa0765e1999-10-22 04:30:20 +000025#include "internal.h"
26#include "regexp.h"
Eric Andersen17d49ef1999-10-06 20:25:32 +000027#include <stdio.h>
28#include <unistd.h>
29#include <dirent.h>
Eric Andersen17d49ef1999-10-06 20:25:32 +000030
31
Erik Andersene49d5ec2000-02-08 19:58:47 +000032static char *pattern = NULL;
33static char *directory = ".";
34static int dereferenceFlag = FALSE;
Eric Andersen17d49ef1999-10-06 20:25:32 +000035
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000036static const char find_usage[] = "find [PATH...] [EXPRESSION]\n"
37#ifndef BB_FEATURE_TRIVIAL_HELP
38 "\nSearch for files in a directory hierarchy. The default PATH is\n"
Erik Andersene49d5ec2000-02-08 19:58:47 +000039 "the current directory; default EXPRESSION is '-print'\n\n"
40 "\nEXPRESSION may consist of:\n"
Erik Andersen9cf3bfa2000-04-13 18:49:43 +000041 "\t-follow\t\tDereference symbolic links.\n"
42 "\t-name PATTERN\tFile name (leading directories removed) matches PATTERN.\n"
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000043 "\t-print\t\tprint the full file name followed by a newline to stdout.\n"
44#endif
45 ;
Eric Andersen17d49ef1999-10-06 20:25:32 +000046
47
Erik Andersen3364d782000-03-28 00:58:14 +000048static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
Eric Andersen17d49ef1999-10-06 20:25:32 +000049{
Erik Andersene49d5ec2000-02-08 19:58:47 +000050 if (pattern == NULL)
51 fprintf(stdout, "%s\n", fileName);
52 else {
53 char *tmp = strrchr(fileName, '/');
54
55 if (tmp == NULL)
56 tmp = (char *) fileName;
57 else
58 tmp++;
59 if (check_wildcard_match(tmp, pattern) == TRUE)
60 fprintf(stdout, "%s\n", fileName);
61 }
62 return (TRUE);
Eric Andersen17d49ef1999-10-06 20:25:32 +000063}
64
Eric Andersen17d49ef1999-10-06 20:25:32 +000065int find_main(int argc, char **argv)
66{
Erik Andersene49d5ec2000-02-08 19:58:47 +000067 /* peel off the "find" */
Eric Andersen17d49ef1999-10-06 20:25:32 +000068 argc--;
69 argv++;
Eric Andersen17d49ef1999-10-06 20:25:32 +000070
Erik Andersene49d5ec2000-02-08 19:58:47 +000071 if (argc > 0 && **argv != '-') {
72 directory = *argv;
73 argc--;
74 argv++;
Eric Andersen17d49ef1999-10-06 20:25:32 +000075 }
Eric Andersen17d49ef1999-10-06 20:25:32 +000076
Erik Andersene49d5ec2000-02-08 19:58:47 +000077 /* Parse any options */
78 while (argc > 0 && **argv == '-') {
79 int stopit = FALSE;
Eric Andersenaa0765e1999-10-22 04:30:20 +000080
Erik Andersene49d5ec2000-02-08 19:58:47 +000081 while (*++(*argv) && stopit == FALSE)
82 switch (**argv) {
83 case 'f':
84 if (strcmp(*argv, "follow") == 0) {
85 argc--;
86 argv++;
87 dereferenceFlag = TRUE;
88 }
89 break;
90 case 'n':
91 if (strcmp(*argv, "name") == 0) {
92 if (argc-- > 1) {
93 pattern = *(++argv);
94 stopit = TRUE;
95 } else {
96 usage(find_usage);
97 }
98 }
99 break;
100 case '-':
101 /* Ignore all long options */
102 break;
103 default:
104 usage(find_usage);
105 }
106 if (argc-- > 1)
107 argv++;
108 if (**argv != '-')
109 break;
110 else
111 break;
112 }
113
114 if (recursiveAction(directory, TRUE, FALSE, FALSE,
Erik Andersen3364d782000-03-28 00:58:14 +0000115 fileAction, fileAction, NULL) == FALSE) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000116 exit(FALSE);
117 }
118
119 exit(TRUE);
Eric Andersen17d49ef1999-10-06 20:25:32 +0000120}