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-04-25 01:34:18 +05:30
|
|
|
* Copyright (C) 2001 Matt Kraai <kraai@alumni.carnegiemellon.edu>
|
1999-10-19 00:32:32 +05:30
|
|
|
*
|
2001-03-13 22:05:55 +05:30
|
|
|
*
|
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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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>
|
2001-06-30 00:29:32 +05:30
|
|
|
#include <string.h>
|
2001-03-20 00:22:37 +05:30
|
|
|
#include <getopt.h>
|
2001-02-20 11:44:08 +05:30
|
|
|
#include "busybox.h"
|
1999-10-19 00:32:32 +05:30
|
|
|
|
|
|
|
extern int rm_main(int argc, char **argv)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2001-04-25 01:34:18 +05:30
|
|
|
int status = 0;
|
2001-03-20 00:22:37 +05:30
|
|
|
int opt;
|
2001-04-25 01:34:18 +05:30
|
|
|
int flags = 0;
|
|
|
|
int i;
|
2001-04-11 22:50:44 +05:30
|
|
|
|
2001-04-25 01:34:18 +05:30
|
|
|
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 21:45:23 +05:30
|
|
|
}
|
2000-06-14 23:09:41 +05:30
|
|
|
}
|
2001-04-25 01:34:18 +05:30
|
|
|
|
|
|
|
if (!(flags & FILEUTILS_FORCE) && optind == argc)
|
2001-02-15 02:53:06 +05:30
|
|
|
show_usage();
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2001-04-25 01:34:18 +05:30
|
|
|
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-09 01:28:47 +05:30
|
|
|
}
|
2001-04-25 01:34:18 +05:30
|
|
|
|
|
|
|
if (remove_file(argv[i], flags) < 0)
|
|
|
|
status = 1;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
2001-04-25 01:34:18 +05:30
|
|
|
|
2000-12-05 10:41:41 +05:30
|
|
|
return status;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|