2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
2022-06-30 17:19:03 +03:00
|
|
|
* Copyright (c) 2021, Kenneth Myhra <kennethmyhra@serenityos.org>
|
2021-12-25 13:02:56 +03:00
|
|
|
* Copyright (c) 2021, Xavier Defrang <xavier.defrang@gmail.com>
|
2020-01-18 11:38:21 +03:00
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 11:38:21 +03:00
|
|
|
*/
|
|
|
|
|
2021-11-27 17:55:40 +03:00
|
|
|
#include <AK/Vector.h>
|
2022-07-23 22:31:49 +03:00
|
|
|
#include <LibCore/ArgsParser.h>
|
2021-12-25 13:02:56 +03:00
|
|
|
#include <LibCore/FilePermissionsMask.h>
|
2021-11-27 17:55:40 +03:00
|
|
|
#include <LibCore/System.h>
|
|
|
|
#include <LibMain/Main.h>
|
2019-01-29 06:55:08 +03:00
|
|
|
|
2021-11-27 17:55:40 +03:00
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
2019-01-29 06:55:08 +03:00
|
|
|
{
|
2021-12-25 13:02:56 +03:00
|
|
|
TRY(Core::System::pledge("stdio rpath fattr"));
|
2020-01-12 15:25:02 +03:00
|
|
|
|
2022-07-23 22:31:49 +03:00
|
|
|
StringView mode;
|
|
|
|
Vector<StringView> paths;
|
|
|
|
|
|
|
|
Core::ArgsParser args_parser;
|
|
|
|
args_parser.add_positional_argument(mode, "File mode in octal or symbolic notation", "mode");
|
|
|
|
args_parser.add_positional_argument(paths, "Paths to file", "paths");
|
|
|
|
args_parser.parse(arguments);
|
2019-01-29 06:55:08 +03:00
|
|
|
|
2022-07-23 22:31:49 +03:00
|
|
|
auto mask = TRY(Core::FilePermissionsMask::parse(mode));
|
2019-07-13 20:36:02 +03:00
|
|
|
|
2022-07-23 22:31:49 +03:00
|
|
|
for (auto const& path : paths) {
|
|
|
|
auto current_access = TRY(Core::System::stat(path));
|
|
|
|
TRY(Core::System::chmod(path, mask.apply(current_access.st_mode)));
|
2019-01-29 06:55:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|