summaryrefslogtreecommitdiffstats
path: root/commands/rm.c
diff options
context:
space:
mode:
Diffstat (limited to 'commands/rm.c')
-rw-r--r--commands/rm.c39
1 files changed, 16 insertions, 23 deletions
diff --git a/commands/rm.c b/commands/rm.c
index 4eebb3d159..c35cf2d2d4 100644
--- a/commands/rm.c
+++ b/commands/rm.c
@@ -1,21 +1,8 @@
-/*
- * rm.c - remove files
- *
- * Copyright (c) 2007 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix
- *
- * See file CREDITS for list of people who contributed to this
- * project.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2
- * as published by the Free Software Foundation.
- *
- * 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.
- *
- */
+// SPDX-License-Identifier: GPL-2.0-only
+// SPDX-FileCopyrightText: © 2007 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix
+
+/* rm.c - remove files */
+
#include <common.h>
#include <command.h>
#include <fs.h>
@@ -25,13 +12,16 @@
static int do_rm(int argc, char *argv[])
{
- int i, opt, recursive = 0;
+ int i, opt, recursive = 0, force = 0;
- while ((opt = getopt(argc, argv, "r")) > 0) {
+ while ((opt = getopt(argc, argv, "rf")) > 0) {
switch (opt) {
case 'r':
recursive = 1;
break;
+ case 'f':
+ force = 1;
+ break;
default:
return COMMAND_ERROR_USAGE;
}
@@ -50,8 +40,10 @@ static int do_rm(int argc, char *argv[])
else
ret = unlink(argv[i]);
if (ret) {
- printf("could not remove %s: %s\n", argv[i], errno_str());
- return 1;
+ if (!force || ret != -ENOENT)
+ printf("could not remove %s: %m\n", argv[i]);
+ if (!force)
+ return 1;
}
i++;
}
@@ -62,12 +54,13 @@ static int do_rm(int argc, char *argv[])
BAREBOX_CMD_HELP_START(rm)
BAREBOX_CMD_HELP_TEXT("Options:")
BAREBOX_CMD_HELP_OPT ("-r", "remove directories and their contents recursively")
+BAREBOX_CMD_HELP_OPT ("-f", "ignore nonexistent files")
BAREBOX_CMD_HELP_END
BAREBOX_CMD_START(rm)
.cmd = do_rm,
BAREBOX_CMD_DESC("remove files")
- BAREBOX_CMD_OPTS("[-r] FILES...")
+ BAREBOX_CMD_OPTS("[-rf] FILES...")
BAREBOX_CMD_GROUP(CMD_GRP_FILE)
BAREBOX_CMD_HELP(cmd_rm_help)
BAREBOX_CMD_END