Extract usage information into a separate file.
[oweals/busybox.git] / coreutils / 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 int recursiveFlag = FALSE;
33 static int forceFlag = FALSE;
34 static const char *srcName;
35
36
37 static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
38 {
39         if (unlink(fileName) < 0) {
40                 perror(fileName);
41                 return (FALSE);
42         }
43         return (TRUE);
44 }
45
46 static int dirAction(const char *fileName, struct stat *statbuf, void* junk)
47 {
48         if (rmdir(fileName) < 0) {
49                 perror(fileName);
50                 return (FALSE);
51         }
52         return (TRUE);
53 }
54
55 extern int rm_main(int argc, char **argv)
56 {
57         int stopIt=FALSE;
58         struct stat statbuf;
59
60         argc--;
61         argv++;
62
63         /* Parse any options */
64         while (argc > 0 && stopIt == FALSE) {
65                 if (**argv == '-') {
66                         while (*++(*argv))
67                                 switch (**argv) {
68                                         case 'R':
69                                         case 'r':
70                                                 recursiveFlag = TRUE;
71                                                 break;
72                                         case 'f':
73                                                 forceFlag = TRUE;
74                                                 break;
75                                         case '-':
76                                                 stopIt = TRUE;
77                                                 break;
78                                         default:
79                                                 usage(rm_usage);
80                                 }
81                         argc--;
82                         argv++;
83                 }
84                 else
85                         break;
86         }
87
88         if (argc < 1 && forceFlag == FALSE) {
89                 usage(rm_usage);
90         }
91
92         while (argc-- > 0) {
93                 srcName = *(argv++);
94                 if (forceFlag == TRUE && lstat(srcName, &statbuf) != 0
95                         && errno == ENOENT) {
96                         /* do not reports errors for non-existent files if -f, just skip them */
97                 } else {
98                         if (recursiveAction(srcName, recursiveFlag, FALSE,
99                                                                 TRUE, fileAction, dirAction, NULL) == FALSE) {
100                                 exit(FALSE);
101                         }
102                 }
103         }
104         return(TRUE);
105 }