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
|
|
|
|
*
|
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
|
|
|
*
|
2006-07-12 07:56:04 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
1999-10-18 19:02:32 +00:00
|
|
|
*/
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
/* BB_AUDIT SUSv3 compliant */
|
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/rm.html */
|
|
|
|
|
|
|
|
/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
|
|
|
|
*
|
|
|
|
* Size reduction.
|
|
|
|
*/
|
|
|
|
|
2001-02-20 06:14:08 +00:00
|
|
|
#include "busybox.h"
|
1999-10-18 19:02:32 +00:00
|
|
|
|
2007-04-10 15:43:37 +00:00
|
|
|
/* This is a NOFORK applet. Be very careful! */
|
|
|
|
|
2007-02-03 17:28:39 +00:00
|
|
|
int rm_main(int argc, char **argv);
|
2006-03-06 20:47:33 +00:00
|
|
|
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;
|
|
|
|
int flags = 0;
|
2006-10-03 21:00:06 +00:00
|
|
|
unsigned opt;
|
2001-04-11 17:20:44 +00:00
|
|
|
|
2006-10-03 21:00:06 +00:00
|
|
|
opt_complementary = "f-i:i-f";
|
|
|
|
opt = getopt32(argc, argv, "fiRr");
|
2007-04-10 15:43:37 +00:00
|
|
|
argv += optind;
|
2007-04-12 00:32:05 +00:00
|
|
|
if (opt & 1)
|
2007-04-10 15:43:37 +00:00
|
|
|
flags |= FILEUTILS_FORCE;
|
2007-04-12 00:32:05 +00:00
|
|
|
if (opt & 2)
|
2003-06-20 09:01:58 +00:00
|
|
|
flags |= FILEUTILS_INTERACTIVE;
|
2007-04-12 00:32:05 +00:00
|
|
|
if (opt & 12)
|
2003-06-20 09:01:58 +00:00
|
|
|
flags |= FILEUTILS_RECUR;
|
2001-04-24 20:04:18 +00:00
|
|
|
|
2007-04-10 15:43:37 +00:00
|
|
|
if (*argv != NULL) {
|
2003-03-19 09:13:01 +00:00
|
|
|
do {
|
|
|
|
const char *base = bb_get_last_path_component(*argv);
|
2001-04-24 20:04:18 +00:00
|
|
|
|
2007-04-13 23:59:52 +00:00
|
|
|
if (DOT_OR_DOTDOT(base)) {
|
2006-11-18 22:04:09 +00:00
|
|
|
bb_error_msg("cannot remove '.' or '..'");
|
2003-03-19 09:13:01 +00:00
|
|
|
} else if (remove_file(*argv, flags) >= 0) {
|
|
|
|
continue;
|
|
|
|
}
|
2001-04-24 20:04:18 +00:00
|
|
|
status = 1;
|
2003-03-19 09:13:01 +00:00
|
|
|
} while (*++argv);
|
|
|
|
} else if (!(flags & FILEUTILS_FORCE)) {
|
|
|
|
bb_show_usage();
|
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
|
|
|
}
|