Lots of updates. Finished implementing BB_FEATURE_TRIVIAL_HELP
[oweals/busybox.git] / rm.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini rm implementation for busybox
4  *
5  *
6  * Copyright (C) 1999,2000 by Lineo, inc.
7  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
8  *
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
25 #include "internal.h"
26 #include <stdio.h>
27 #include <time.h>
28 #include <utime.h>
29 #include <dirent.h>
30 #include <errno.h>
31
32 static const char *rm_usage = "rm [OPTION]... FILE...\n"
33 #ifndef BB_FEATURE_TRIVIAL_HELP
34         "\nRemove (unlink) the FILE(s).\n\n"
35         "Options:\n"
36         "\t-f\t\tremove existing destinations, never prompt\n"
37         "\t-r or -R\tremove the contents of directories recursively\n"
38 #endif
39         ;
40
41
42 static int recursiveFlag = FALSE;
43 static int forceFlag = FALSE;
44 static const char *srcName;
45
46
47 static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
48 {
49         if (unlink(fileName) < 0) {
50                 perror(fileName);
51                 return (FALSE);
52         }
53         return (TRUE);
54 }
55
56 static int dirAction(const char *fileName, struct stat *statbuf, void* junk)
57 {
58         if (rmdir(fileName) < 0) {
59                 perror(fileName);
60                 return (FALSE);
61         }
62         return (TRUE);
63 }
64
65 extern int rm_main(int argc, char **argv)
66 {
67         struct stat statbuf;
68
69         if (argc < 2) {
70                 usage(rm_usage);
71         }
72         argc--;
73         argv++;
74
75         /* Parse any options */
76         while (**argv == '-') {
77                 while (*++(*argv))
78                         switch (**argv) {
79                         case 'R':
80                         case 'r':
81                                 recursiveFlag = TRUE;
82                                 break;
83                         case 'f':
84                                 forceFlag = TRUE;
85                                 break;
86                         default:
87                                 usage(rm_usage);
88                         }
89                 argc--;
90                 argv++;
91         }
92
93         while (argc-- > 0) {
94                 srcName = *(argv++);
95                 if (forceFlag == TRUE && lstat(srcName, &statbuf) != 0
96                         && errno == ENOENT) {
97                         /* do not reports errors for non-existent files if -f, just skip them */
98                 } else {
99                         if (recursiveAction(srcName, recursiveFlag, FALSE,
100                                                                 TRUE, fileAction, dirAction, NULL) == FALSE) {
101                                 exit(FALSE);
102                         }
103                 }
104         }
105         exit(TRUE);
106 }