2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 11:38:21 +03:00
|
|
|
*/
|
|
|
|
|
2019-06-03 02:04:18 +03:00
|
|
|
#include <AK/StringBuilder.h>
|
|
|
|
#include <AK/Vector.h>
|
2020-02-06 17:04:03 +03:00
|
|
|
#include <LibCore/ArgsParser.h>
|
2022-01-25 04:58:47 +03:00
|
|
|
#include <LibCore/System.h>
|
2023-03-21 18:35:30 +03:00
|
|
|
#include <LibFileSystem/FileSystem.h>
|
2022-01-25 04:58:47 +03:00
|
|
|
#include <LibMain/Main.h>
|
2019-01-22 09:03:44 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2022-01-25 04:58:47 +03:00
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
2019-06-03 02:04:18 +03:00
|
|
|
{
|
2022-01-25 04:58:47 +03:00
|
|
|
TRY(Core::System::pledge("stdio rpath cpath"));
|
2020-02-18 15:23:32 +03:00
|
|
|
|
2020-01-27 20:25:36 +03:00
|
|
|
bool recursive = false;
|
2020-08-11 14:15:15 +03:00
|
|
|
bool force = false;
|
2020-11-17 04:39:30 +03:00
|
|
|
bool verbose = false;
|
2022-01-02 17:10:02 +03:00
|
|
|
bool no_preserve_root = false;
|
|
|
|
Vector<StringView> paths;
|
2019-06-03 02:04:18 +03:00
|
|
|
|
2020-02-02 14:34:39 +03:00
|
|
|
Core::ArgsParser args_parser;
|
2020-01-27 20:25:36 +03:00
|
|
|
args_parser.add_option(recursive, "Delete directories recursively", "recursive", 'r');
|
2022-12-23 16:19:42 +03:00
|
|
|
args_parser.add_option(force, "Ignore nonexistent files", "force", 'f');
|
2020-11-17 04:39:30 +03:00
|
|
|
args_parser.add_option(verbose, "Verbose", "verbose", 'v');
|
2022-01-02 17:10:02 +03:00
|
|
|
args_parser.add_option(no_preserve_root, "Do not consider '/' specially", "no-preserve-root", 0);
|
2021-06-05 04:08:02 +03:00
|
|
|
args_parser.add_positional_argument(paths, "Path(s) to remove", "path", Core::ArgsParser::Required::No);
|
2022-01-25 04:58:47 +03:00
|
|
|
args_parser.parse(arguments);
|
2019-06-03 02:04:18 +03:00
|
|
|
|
2021-06-05 04:08:02 +03:00
|
|
|
if (!force && paths.is_empty()) {
|
2023-02-21 14:44:41 +03:00
|
|
|
args_parser.print_usage(stderr, arguments.strings[0]);
|
2021-06-05 04:08:02 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-02-21 03:55:06 +03:00
|
|
|
bool had_errors = false;
|
2020-03-01 14:08:44 +03:00
|
|
|
for (auto& path : paths) {
|
2022-01-02 17:10:02 +03:00
|
|
|
if (!no_preserve_root && path == "/") {
|
|
|
|
warnln("rm: '/' is protected, try with --no-preserve-root to override this behavior");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2023-03-21 18:35:30 +03:00
|
|
|
auto result = FileSystem::remove(path, recursive ? FileSystem::RecursionMode::Allowed : FileSystem::RecursionMode::Disallowed);
|
2021-02-21 03:55:06 +03:00
|
|
|
|
|
|
|
if (result.is_error()) {
|
2023-02-09 21:26:53 +03:00
|
|
|
auto error = result.release_error();
|
2022-12-23 16:19:42 +03:00
|
|
|
|
|
|
|
if (force && error.is_errno() && error.code() == ENOENT)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
warnln("rm: cannot remove '{}': {}", path, error);
|
2021-02-21 03:55:06 +03:00
|
|
|
had_errors = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (verbose)
|
|
|
|
outln("removed '{}'", path);
|
2020-03-01 14:08:44 +03:00
|
|
|
}
|
2021-02-21 03:55:06 +03:00
|
|
|
return had_errors ? 1 : 0;
|
2019-06-03 02:04:18 +03:00
|
|
|
}
|