Upates to include copyright 2000 to everything
[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 const char *rm_usage = "rm [OPTION]... FILE...\n\n"
33         "Remove (unlink) the FILE(s).\n\n"
34         "Options:\n"
35
36         "\t-f\t\tremove existing destinations, never prompt\n"
37         "\t-r or -R\tremove the contents of directories recursively\n";
38
39
40 static int recursiveFlag = FALSE;
41 static int forceFlag = FALSE;
42 static const char *srcName;
43
44
45 static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
46 {
47         if (unlink(fileName) < 0) {
48                 perror(fileName);
49                 return (FALSE);
50         }
51         return (TRUE);
52 }
53
54 static int dirAction(const char *fileName, struct stat *statbuf, void* junk)
55 {
56         if (rmdir(fileName) < 0) {
57                 perror(fileName);
58                 return (FALSE);
59         }
60         return (TRUE);
61 }
62
63 extern int rm_main(int argc, char **argv)
64 {
65         struct stat statbuf;
66
67         if (argc < 2) {
68                 usage(rm_usage);
69         }
70         argc--;
71         argv++;
72
73         /* Parse any options */
74         while (**argv == '-') {
75                 while (*++(*argv))
76                         switch (**argv) {
77                         case 'R':
78                         case 'r':
79                                 recursiveFlag = TRUE;
80                                 break;
81                         case 'f':
82                                 forceFlag = TRUE;
83                                 break;
84                         default:
85                                 usage(rm_usage);
86                         }
87                 argc--;
88                 argv++;
89         }
90
91         while (argc-- > 0) {
92                 srcName = *(argv++);
93                 if (forceFlag == TRUE && lstat(srcName, &statbuf) != 0
94                         && errno == ENOENT) {
95                         /* do not reports errors for non-existent files if -f, just skip them */
96                 } else {
97                         if (recursiveAction(srcName, recursiveFlag, FALSE,
98                                                                 TRUE, fileAction, dirAction, NULL) == FALSE) {
99                                 exit(FALSE);
100                         }
101                 }
102         }
103         exit(TRUE);
104 }