blob: dd8dfa4e6e0634250a2bae12e8b697b6a1b6a1f5 [file] [log] [blame]
Eric Andersenbed30e91999-10-18 19:02:32 +00001/*
2 * Mini rm implementation for busybox
3 *
4 * Copyright (C) 1998 by Erik Andersen <andersee@debian.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
Eric Andersencc8ed391999-10-05 16:24:54 +000022#include "internal.h"
Eric Andersenbed30e91999-10-18 19:02:32 +000023#include <stdio.h>
24#include <time.h>
25#include <utime.h>
26#include <dirent.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000027
Eric Andersenb0e9a701999-10-18 22:28:26 +000028static const char* rm_usage = "rm [OPTION]... FILE...\n"
Eric Andersenbed30e91999-10-18 19:02:32 +000029"Remove (unlink) the FILE(s).\n\n"
30"\t-f\tremove existing destinations, never prompt\n"
31"\t-r\tremove the contents of directories recursively\n";
Eric Andersencc8ed391999-10-05 16:24:54 +000032
Eric Andersenbed30e91999-10-18 19:02:32 +000033
34static int recursiveFlag = FALSE;
35static int forceFlag = FALSE;
36static const char *srcName;
37
38
39static int fileAction(const char *fileName, struct stat* statbuf)
Eric Andersencc8ed391999-10-05 16:24:54 +000040{
Eric Andersenbed30e91999-10-18 19:02:32 +000041 if (unlink( fileName) < 0 ) {
42 perror( fileName);
43 return ( FALSE);
44 }
45 return ( TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +000046}
47
Eric Andersenbed30e91999-10-18 19:02:32 +000048static int dirAction(const char *fileName, struct stat* statbuf)
Eric Andersencc8ed391999-10-05 16:24:54 +000049{
Eric Andersenbed30e91999-10-18 19:02:32 +000050 if (rmdir( fileName) < 0 ) {
51 perror( fileName);
52 return ( FALSE);
53 }
54 return ( TRUE);
55}
56
57extern int rm_main(int argc, char **argv)
58{
59
60 if (argc < 2) {
Eric Andersenb0e9a701999-10-18 22:28:26 +000061 usage( rm_usage);
Eric Andersenbed30e91999-10-18 19:02:32 +000062 }
63 argc--;
64 argv++;
65
66 /* Parse any options */
67 while (**argv == '-') {
68 while (*++(*argv))
69 switch (**argv) {
70 case 'r':
71 recursiveFlag = TRUE;
72 break;
73 case 'f':
74 forceFlag = TRUE;
75 break;
76 default:
Eric Andersenb0e9a701999-10-18 22:28:26 +000077 usage( rm_usage);
Eric Andersenbed30e91999-10-18 19:02:32 +000078 }
79 argc--;
80 argv++;
81 }
82
83 while (argc-- > 0) {
84 srcName = *(argv++);
85 if (recursiveAction( srcName, recursiveFlag, TRUE, TRUE,
86 fileAction, dirAction) == FALSE) {
87 exit( FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +000088 }
Eric Andersenbed30e91999-10-18 19:02:32 +000089 }
90 exit( TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +000091}