source: MondoRescue/branches/3.3/mindi-busybox/coreutils/rm.c@ 3655

Last change on this file since 3655 was 3621, checked in by Bruno Cornec, 7 years ago

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

File size: 1.6 KB
RevLine 
[821]1/* vi: set sw=4 ts=4: */
2/*
3 * Mini rm implementation for busybox
4 *
5 * Copyright (C) 2001 Matt Kraai <kraai@alumni.carnegiemellon.edu>
6 *
[2725]7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
[821]8 */
9
10/* BB_AUDIT SUSv3 compliant */
11/* http://www.opengroup.org/onlinepubs/007904975/utilities/rm.html */
12
13/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
14 *
15 * Size reduction.
16 */
17
[3232]18//usage:#define rm_trivial_usage
19//usage: "[-irf] FILE..."
20//usage:#define rm_full_usage "\n\n"
21//usage: "Remove (unlink) FILEs\n"
22//usage: "\n -i Always prompt before removing"
23//usage: "\n -f Never prompt"
24//usage: "\n -R,-r Recurse"
25//usage:
26//usage:#define rm_example_usage
27//usage: "$ rm -rf /tmp/foo\n"
28
[1765]29#include "libbb.h"
[821]30
[1765]31/* This is a NOFORK applet. Be very careful! */
32
[2725]33int rm_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
34int rm_main(int argc UNUSED_PARAM, char **argv)
[821]35{
36 int status = 0;
37 int flags = 0;
[1765]38 unsigned opt;
[821]39
[1765]40 opt_complementary = "f-i:i-f";
[2725]41 opt = getopt32(argv, "fiRrv");
[1765]42 argv += optind;
43 if (opt & 1)
44 flags |= FILEUTILS_FORCE;
45 if (opt & 2)
[821]46 flags |= FILEUTILS_INTERACTIVE;
[2725]47 if (opt & (8|4))
[821]48 flags |= FILEUTILS_RECUR;
[3621]49 if ((opt & 16) && FILEUTILS_VERBOSE)
50 flags |= FILEUTILS_VERBOSE;
[821]51
[1765]52 if (*argv != NULL) {
[821]53 do {
[2725]54 const char *base = bb_get_last_path_component_strip(*argv);
[821]55
[1765]56 if (DOT_OR_DOTDOT(base)) {
[2725]57 bb_error_msg("can't remove '.' or '..'");
[821]58 } else if (remove_file(*argv, flags) >= 0) {
59 continue;
60 }
61 status = 1;
62 } while (*++argv);
63 } else if (!(flags & FILEUTILS_FORCE)) {
64 bb_show_usage();
65 }
66
67 return status;
68}
Note: See TracBrowser for help on using the repository browser.