Eric Andersen | bed30e9 | 1999-10-18 19:02:32 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Mini rm 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 | bed30e9 | 1999-10-18 19:02: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 | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 24 | #include "internal.h" |
Eric Andersen | bed30e9 | 1999-10-18 19:02:32 +0000 | [diff] [blame] | 25 | #include <stdio.h> |
| 26 | #include <time.h> |
| 27 | #include <utime.h> |
| 28 | #include <dirent.h> |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 29 | |
Eric Andersen | b0e9a70 | 1999-10-18 22:28:26 +0000 | [diff] [blame] | 30 | static const char* rm_usage = "rm [OPTION]... FILE...\n" |
Eric Andersen | bed30e9 | 1999-10-18 19:02:32 +0000 | [diff] [blame] | 31 | "Remove (unlink) the FILE(s).\n\n" |
| 32 | "\t-f\tremove existing destinations, never prompt\n" |
| 33 | "\t-r\tremove the contents of directories recursively\n"; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 34 | |
Eric Andersen | bed30e9 | 1999-10-18 19:02:32 +0000 | [diff] [blame] | 35 | |
| 36 | static int recursiveFlag = FALSE; |
| 37 | static int forceFlag = FALSE; |
| 38 | static const char *srcName; |
| 39 | |
| 40 | |
| 41 | static int fileAction(const char *fileName, struct stat* statbuf) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 42 | { |
Eric Andersen | bed30e9 | 1999-10-18 19:02:32 +0000 | [diff] [blame] | 43 | if (unlink( fileName) < 0 ) { |
| 44 | perror( fileName); |
| 45 | return ( FALSE); |
| 46 | } |
| 47 | return ( TRUE); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 48 | } |
| 49 | |
Eric Andersen | bed30e9 | 1999-10-18 19:02:32 +0000 | [diff] [blame] | 50 | static int dirAction(const char *fileName, struct stat* statbuf) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 51 | { |
Eric Andersen | bed30e9 | 1999-10-18 19:02:32 +0000 | [diff] [blame] | 52 | if (rmdir( fileName) < 0 ) { |
| 53 | perror( fileName); |
| 54 | return ( FALSE); |
| 55 | } |
| 56 | return ( TRUE); |
| 57 | } |
| 58 | |
| 59 | extern int rm_main(int argc, char **argv) |
| 60 | { |
| 61 | |
| 62 | if (argc < 2) { |
Eric Andersen | b0e9a70 | 1999-10-18 22:28:26 +0000 | [diff] [blame] | 63 | usage( rm_usage); |
Eric Andersen | bed30e9 | 1999-10-18 19:02:32 +0000 | [diff] [blame] | 64 | } |
| 65 | argc--; |
| 66 | argv++; |
| 67 | |
| 68 | /* Parse any options */ |
| 69 | while (**argv == '-') { |
| 70 | while (*++(*argv)) |
| 71 | switch (**argv) { |
| 72 | case 'r': |
| 73 | recursiveFlag = TRUE; |
| 74 | break; |
| 75 | case 'f': |
| 76 | forceFlag = TRUE; |
| 77 | break; |
| 78 | default: |
Eric Andersen | b0e9a70 | 1999-10-18 22:28:26 +0000 | [diff] [blame] | 79 | usage( rm_usage); |
Eric Andersen | bed30e9 | 1999-10-18 19:02:32 +0000 | [diff] [blame] | 80 | } |
| 81 | argc--; |
| 82 | argv++; |
| 83 | } |
| 84 | |
| 85 | while (argc-- > 0) { |
| 86 | srcName = *(argv++); |
| 87 | if (recursiveAction( srcName, recursiveFlag, TRUE, TRUE, |
| 88 | fileAction, dirAction) == FALSE) { |
| 89 | exit( FALSE); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 90 | } |
Eric Andersen | bed30e9 | 1999-10-18 19:02:32 +0000 | [diff] [blame] | 91 | } |
| 92 | exit( TRUE); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 93 | } |