2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-18 19:02:32 +00:00
|
|
|
/*
|
|
|
|
* Mini rm implementation for busybox
|
|
|
|
*
|
1999-10-20 22:08:37 +00:00
|
|
|
*
|
2001-04-24 20:04:18 +00:00
|
|
|
* Copyright (C) 2001 Matt Kraai <kraai@alumni.carnegiemellon.edu>
|
1999-10-18 19:02:32 +00:00
|
|
|
*
|
2001-03-13 16:35:55 +00:00
|
|
|
*
|
1999-10-18 19:02:32 +00:00
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <utime.h>
|
|
|
|
#include <dirent.h>
|
1999-11-15 17:33:30 +00:00
|
|
|
#include <errno.h>
|
2001-01-27 08:24:39 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
2001-03-19 18:52:37 +00:00
|
|
|
#include <getopt.h>
|
2001-02-20 06:14:08 +00:00
|
|
|
#include "busybox.h"
|
1999-10-18 19:02:32 +00:00
|
|
|
|
|
|
|
extern int rm_main(int argc, char **argv)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2001-04-24 20:04:18 +00:00
|
|
|
int status = 0;
|
2001-03-19 18:52:37 +00:00
|
|
|
int opt;
|
2001-04-24 20:04:18 +00:00
|
|
|
int flags = 0;
|
|
|
|
int i;
|
2001-04-11 17:20:44 +00:00
|
|
|
|
2001-04-24 20:04:18 +00:00
|
|
|
while ((opt = getopt(argc, argv, "fiRr")) != -1) {
|
|
|
|
switch (opt) {
|
|
|
|
case 'f':
|
|
|
|
flags &= ~FILEUTILS_INTERACTIVE;
|
|
|
|
flags |= FILEUTILS_FORCE;
|
|
|
|
break;
|
|
|
|
case 'i':
|
|
|
|
flags &= ~FILEUTILS_FORCE;
|
|
|
|
flags |= FILEUTILS_INTERACTIVE;
|
|
|
|
break;
|
|
|
|
case 'R':
|
|
|
|
case 'r':
|
|
|
|
flags |= FILEUTILS_RECUR;
|
|
|
|
break;
|
2000-06-06 16:15:23 +00:00
|
|
|
}
|
2000-06-14 17:39:41 +00:00
|
|
|
}
|
2001-04-24 20:04:18 +00:00
|
|
|
|
|
|
|
if (!(flags & FILEUTILS_FORCE) && optind == argc)
|
2001-02-14 21:23:06 +00:00
|
|
|
show_usage();
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2001-04-24 20:04:18 +00:00
|
|
|
for (i = optind; i < argc; i++) {
|
|
|
|
char *base = get_last_path_component(argv[i]);
|
|
|
|
|
|
|
|
if (strcmp(base, ".") == 0 || strcmp(base, "..") == 0) {
|
|
|
|
error_msg("cannot remove `.' or `..'");
|
|
|
|
status = 1;
|
|
|
|
continue;
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
2001-04-24 20:04:18 +00:00
|
|
|
|
|
|
|
if (remove_file(argv[i], flags) < 0)
|
|
|
|
status = 1;
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
2001-04-24 20:04:18 +00:00
|
|
|
|
2000-12-05 05:11:41 +00:00
|
|
|
return status;
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|