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-01-27 08:24:39 +00:00
|
|
|
#include <unistd.h>
|
2001-02-20 06:14:08 +00:00
|
|
|
#include "busybox.h"
|
1999-10-18 19:02:32 +00:00
|
|
|
|
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");
|
2003-06-20 09:01:58 +00:00
|
|
|
if(opt & 1)
|
2003-03-19 09:13:01 +00:00
|
|
|
flags |= FILEUTILS_FORCE;
|
2003-06-20 09:01:58 +00:00
|
|
|
if(opt & 2)
|
|
|
|
flags |= FILEUTILS_INTERACTIVE;
|
|
|
|
if(opt & 12)
|
|
|
|
flags |= FILEUTILS_RECUR;
|
2001-04-24 20:04:18 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
if (*(argv += optind) != NULL) {
|
|
|
|
do {
|
|
|
|
const char *base = bb_get_last_path_component(*argv);
|
2001-04-24 20:04:18 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
if ((base[0] == '.') && (!base[1] || ((base[1] == '.') && !base[2]))) {
|
|
|
|
bb_error_msg("cannot remove `.' or `..'");
|
|
|
|
} 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
|
|
|
}
|