Updates to usage, and made tar work.
[oweals/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\n"
31 "Remove (unlink) the FILE(s).\n\n"
32 "Options:\n"
33 "\t-f\tremove existing destinations, never prompt\n"
34 "\t-r\tremove the contents of directories recursively\n";
35
36
37 static int recursiveFlag = FALSE;
38 static int forceFlag = FALSE;
39 static const char *srcName;
40
41
42 static int fileAction(const char *fileName, struct stat* statbuf)
43 {
44     if (unlink( fileName) < 0 ) {
45         perror( fileName);
46         return ( FALSE);
47     }
48     return ( TRUE);
49 }
50
51 static int dirAction(const char *fileName, struct stat* statbuf)
52 {
53     if (rmdir( fileName) < 0 ) {
54         perror( fileName);
55         return ( FALSE);
56     }
57     return ( TRUE);
58 }
59
60 extern int rm_main(int argc, char **argv)
61 {
62
63     if (argc < 2) {
64         usage( rm_usage);
65     }
66     argc--;
67     argv++;
68
69     /* Parse any options */
70     while (**argv == '-') {
71         while (*++(*argv))
72             switch (**argv) {
73             case 'r':
74                 recursiveFlag = TRUE;
75                 break;
76             case 'f':
77                 forceFlag = TRUE;
78                 break;
79             default:
80                 usage( rm_usage);
81             }
82         argc--;
83         argv++;
84     }
85
86     while (argc-- > 0) {
87         srcName = *(argv++);
88         if (recursiveAction( srcName, recursiveFlag, FALSE, TRUE, 
89                                fileAction, dirAction) == FALSE) {
90             exit( FALSE);
91         }
92     }
93     exit( TRUE);
94 }