2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-19 00:32:32 +05:30
|
|
|
/*
|
|
|
|
* Mini rm implementation for busybox
|
|
|
|
*
|
1999-10-21 03:38:37 +05:30
|
|
|
*
|
2001-01-27 15:03:39 +05:30
|
|
|
* Copyright (C) 1999,2000,2001 by Lineo, inc.
|
1999-10-21 03:38:37 +05:30
|
|
|
* Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
|
1999-10-19 00:32:32 +05:30
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2000-09-26 03:15:58 +05:30
|
|
|
#include "busybox.h"
|
1999-10-19 00:32:32 +05:30
|
|
|
#include <stdio.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <utime.h>
|
|
|
|
#include <dirent.h>
|
1999-11-15 23:03:30 +05:30
|
|
|
#include <errno.h>
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
1999-10-19 00:32:32 +05:30
|
|
|
|
|
|
|
static int recursiveFlag = FALSE;
|
|
|
|
static int forceFlag = FALSE;
|
|
|
|
static const char *srcName;
|
|
|
|
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2000-03-28 06:28:14 +05:30
|
|
|
static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
|
1999-10-19 00:32:32 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
if (unlink(fileName) < 0) {
|
2000-12-08 01:26:48 +05:30
|
|
|
perror_msg("%s", fileName);
|
2000-02-09 01:28:47 +05:30
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
return (TRUE);
|
1999-10-19 00:32:32 +05:30
|
|
|
}
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2000-03-28 06:28:14 +05:30
|
|
|
static int dirAction(const char *fileName, struct stat *statbuf, void* junk)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2000-09-21 04:40:21 +05:30
|
|
|
if (recursiveFlag == FALSE) {
|
|
|
|
errno = EISDIR;
|
2000-12-08 01:26:48 +05:30
|
|
|
perror_msg("%s", fileName);
|
2000-09-21 04:40:21 +05:30
|
|
|
return (FALSE);
|
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
if (rmdir(fileName) < 0) {
|
2000-12-08 01:26:48 +05:30
|
|
|
perror_msg("%s", fileName);
|
2000-02-09 01:28:47 +05:30
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
return (TRUE);
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
1999-10-19 00:32:32 +05:30
|
|
|
extern int rm_main(int argc, char **argv)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2000-12-05 10:41:41 +05:30
|
|
|
int status = EXIT_SUCCESS;
|
2000-06-06 21:45:23 +05:30
|
|
|
int stopIt=FALSE;
|
2000-02-09 01:28:47 +05:30
|
|
|
struct stat statbuf;
|
1999-10-19 00:32:32 +05:30
|
|
|
|
2000-06-14 23:09:41 +05:30
|
|
|
argc--;
|
1999-10-19 00:32:32 +05:30
|
|
|
argv++;
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
/* Parse any options */
|
2000-06-14 23:09:41 +05:30
|
|
|
while (argc > 0 && stopIt == FALSE) {
|
|
|
|
if (**argv == '-') {
|
2000-06-06 21:45:23 +05:30
|
|
|
while (*++(*argv))
|
|
|
|
switch (**argv) {
|
|
|
|
case 'R':
|
|
|
|
case 'r':
|
|
|
|
recursiveFlag = TRUE;
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
forceFlag = TRUE;
|
|
|
|
break;
|
|
|
|
case '-':
|
|
|
|
stopIt = TRUE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage(rm_usage);
|
|
|
|
}
|
2000-06-14 23:09:41 +05:30
|
|
|
argc--;
|
|
|
|
argv++;
|
2000-06-06 21:45:23 +05:30
|
|
|
}
|
2000-06-14 23:09:41 +05:30
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc < 1 && forceFlag == FALSE) {
|
|
|
|
usage(rm_usage);
|
1999-11-15 23:03:30 +05:30
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
|
|
|
|
while (argc-- > 0) {
|
|
|
|
srcName = *(argv++);
|
|
|
|
if (forceFlag == TRUE && lstat(srcName, &statbuf) != 0
|
|
|
|
&& errno == ENOENT) {
|
|
|
|
/* do not reports errors for non-existent files if -f, just skip them */
|
|
|
|
} else {
|
2000-12-08 01:26:48 +05:30
|
|
|
if (recursive_action(srcName, recursiveFlag, FALSE,
|
2000-03-28 06:28:14 +05:30
|
|
|
TRUE, fileAction, dirAction, NULL) == FALSE) {
|
2000-12-05 10:41:41 +05:30
|
|
|
status = EXIT_FAILURE;
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
|
|
|
}
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
2000-12-05 10:41:41 +05:30
|
|
|
return status;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|