Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Mini find implementation for busybox |
| 3 | * |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 4 | * |
| 5 | * Copyright (C) 1999 by Lineo, inc. |
| 6 | * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org> |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 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 | |
Eric Andersen | aa0765e | 1999-10-22 04:30:20 +0000 | [diff] [blame] | 24 | #include "internal.h" |
| 25 | #include "regexp.h" |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 26 | #include <stdio.h> |
| 27 | #include <unistd.h> |
| 28 | #include <dirent.h> |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 29 | |
| 30 | |
| 31 | static char* pattern=NULL; |
Eric Andersen | aa0765e | 1999-10-22 04:30:20 +0000 | [diff] [blame] | 32 | static char* directory="."; |
Eric Andersen | f811e07 | 1999-10-09 00:25:00 +0000 | [diff] [blame] | 33 | static int dereferenceFlag=FALSE; |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 34 | |
Eric Andersen | d73dc5b | 1999-11-10 23:13:02 +0000 | [diff] [blame] | 35 | static 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 Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 47 | |
| 48 | |
| 49 | |
Eric Andersen | 9b58718 | 1999-10-17 05:43:39 +0000 | [diff] [blame] | 50 | static int fileAction(const char *fileName, struct stat* statbuf) |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 51 | { |
| 52 | if (pattern==NULL) |
| 53 | fprintf(stdout, "%s\n", fileName); |
Eric Andersen | b186d98 | 1999-12-03 09:19:54 +0000 | [diff] [blame] | 54 | else { |
| 55 | char* tmp = strrchr( fileName, '/'); |
| 56 | if (tmp == NULL) |
| 57 | tmp = (char*)fileName; |
| 58 | else |
| 59 | tmp++; |
| 60 | if (check_wildcard_match(tmp, pattern) == TRUE) |
| 61 | fprintf(stdout, "%s\n", fileName); |
| 62 | } |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 63 | return( TRUE); |
| 64 | } |
| 65 | |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 66 | int find_main(int argc, char **argv) |
| 67 | { |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 68 | /* peel off the "find" */ |
| 69 | argc--; |
| 70 | argv++; |
| 71 | |
Eric Andersen | aa0765e | 1999-10-22 04:30:20 +0000 | [diff] [blame] | 72 | if ( argc > 0 && **argv != '-') { |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 73 | directory=*argv; |
| 74 | argc--; |
| 75 | argv++; |
| 76 | } |
| 77 | |
| 78 | /* Parse any options */ |
Eric Andersen | aa0765e | 1999-10-22 04:30:20 +0000 | [diff] [blame] | 79 | while (argc > 0 && **argv == '-') { |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 80 | int stopit=FALSE; |
| 81 | while (*++(*argv) && stopit==FALSE) switch (**argv) { |
| 82 | case 'f': |
| 83 | if (strcmp(*argv, "follow")==0) { |
| 84 | argc--; |
| 85 | argv++; |
| 86 | dereferenceFlag=TRUE; |
| 87 | } |
| 88 | break; |
| 89 | case 'n': |
| 90 | if (strcmp(*argv, "name")==0) { |
| 91 | if (argc-- > 1) { |
| 92 | pattern=*(++argv); |
| 93 | stopit=-TRUE; |
| 94 | } else { |
Eric Andersen | b0e9a70 | 1999-10-18 22:28:26 +0000 | [diff] [blame] | 95 | usage (find_usage); |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 96 | } |
| 97 | } |
| 98 | break; |
| 99 | case '-': |
| 100 | /* Ignore all long options */ |
| 101 | break; |
| 102 | default: |
Eric Andersen | b0e9a70 | 1999-10-18 22:28:26 +0000 | [diff] [blame] | 103 | usage (find_usage); |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 104 | } |
| 105 | if (argc-- > 1) |
| 106 | argv++; |
| 107 | if (**argv != '-') |
| 108 | break; |
| 109 | else |
| 110 | break; |
| 111 | } |
| 112 | |
Eric Andersen | aa0765e | 1999-10-22 04:30:20 +0000 | [diff] [blame] | 113 | if (recursiveAction(directory, TRUE, FALSE, FALSE, |
| 114 | fileAction, fileAction) == FALSE) { |
| 115 | exit( FALSE); |
| 116 | } |
| 117 | |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 118 | exit(TRUE); |
| 119 | } |