5489350e50ef3dc1d8815f30076f614a9fa21435
[oweals/busybox.git] / coreutils / rm.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini rm implementation for busybox
4  *
5  * Copyright (C) 2001 Matt Kraai <kraai@alumni.carnegiemellon.edu>
6  *
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 /* BB_AUDIT SUSv3 compliant */
25 /* http://www.opengroup.org/onlinepubs/007904975/utilities/rm.html */
26
27 /* Mar 16, 2003      Manuel Novoa III   (mjn3@codepoet.org)
28  *
29  * Size reduction.
30  */
31
32 #include <unistd.h>
33 #include "busybox.h"
34
35 extern int rm_main(int argc, char **argv)
36 {
37         int status = 0;
38         int flags = 0;
39         int opt;
40
41         while ((opt = getopt(argc, argv, "fiRr")) > 0) {
42                 if ((opt == 'r') || (opt == 'R')) {
43                         flags |= FILEUTILS_RECUR;
44                 } else {
45                         flags &= ~(FILEUTILS_INTERACTIVE | FILEUTILS_FORCE);
46                         if (opt == 'i') {
47                                 flags |= FILEUTILS_INTERACTIVE;
48                         } else if (opt == 'f') {
49                                 flags |= FILEUTILS_FORCE;
50                         } else {
51                                 bb_show_usage();
52                         }
53                 }
54         }
55
56         if (*(argv += optind) != NULL) {
57                 do {
58                         const char *base = bb_get_last_path_component(*argv);
59
60                         if ((base[0] == '.') && (!base[1] || ((base[1] == '.') && !base[2]))) {
61                                 bb_error_msg("cannot remove `.' or `..'");
62                         } else if (remove_file(*argv, flags) >= 0) {
63                                 continue;
64                         }
65                         status = 1;
66                 } while (*++argv);
67         } else if (!(flags & FILEUTILS_FORCE)) {
68                 bb_show_usage();
69         }
70
71         return status;
72 }