Stuff
[platform/upstream/busybox.git] / coreutils / rm.c
1 /*
2  * Mini rm 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 <stdio.h>
26 #include <time.h>
27 #include <utime.h>
28 #include <dirent.h>
29
30 static const char* rm_usage = "rm [OPTION]... FILE...\n"
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";
34
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)
42 {
43     if (unlink( fileName) < 0 ) {
44         perror( fileName);
45         return ( FALSE);
46     }
47     return ( TRUE);
48 }
49
50 static int dirAction(const char *fileName, struct stat* statbuf)
51 {
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) {
63         usage( rm_usage);
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:
79                 usage( rm_usage);
80             }
81         argc--;
82         argv++;
83     }
84
85     while (argc-- > 0) {
86         srcName = *(argv++);
87         if (recursiveAction( srcName, recursiveFlag, FALSE, TRUE, 
88                                fileAction, dirAction) == FALSE) {
89             exit( FALSE);
90         }
91     }
92     exit( TRUE);
93 }