1 /* vi: set sw=4 ts=4: */
3 * Mini rm implementation for busybox
6 * Copyright (C) 1999,2000 by Lineo, inc.
7 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
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.
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.
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
32 static int recursiveFlag = FALSE;
33 static int forceFlag = FALSE;
34 static const char *srcName;
37 static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
39 if (unlink(fileName) < 0) {
40 perror_msg("%s", fileName);
46 static int dirAction(const char *fileName, struct stat *statbuf, void* junk)
48 if (recursiveFlag == FALSE) {
50 perror_msg("%s", fileName);
53 if (rmdir(fileName) < 0) {
54 perror_msg("%s", fileName);
60 extern int rm_main(int argc, char **argv)
62 int status = EXIT_SUCCESS;
69 /* Parse any options */
70 while (argc > 0 && stopIt == FALSE) {
94 if (argc < 1 && forceFlag == FALSE) {
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 */
104 if (recursive_action(srcName, recursiveFlag, FALSE,
105 TRUE, fileAction, dirAction, NULL) == FALSE) {
106 status = EXIT_FAILURE;