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