/* * Copyright (c) 2018-2021, Andreas Kling * Copyright (c) 2022, Lucas Chollet * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include #include ErrorOr serenity_main(Main::Arguments arguments) { TRY(Core::System::pledge("stdio rpath")); Vector paths; Core::ArgsParser args_parser; args_parser.set_general_help("Concatenate files or pipes to stdout."); args_parser.add_positional_argument(paths, "File path", "path", Core::ArgsParser::Required::No); args_parser.parse(arguments); if (paths.is_empty()) paths.append("-"sv); Vector> files; TRY(files.try_ensure_capacity(paths.size())); for (auto const& path : paths) { if (auto result = Core::Stream::File::open_file_or_standard_stream(path, Core::Stream::OpenMode::Read); result.is_error()) warnln("Failed to open {}: {}", path, result.release_error()); else files.unchecked_append(result.release_value()); } TRY(Core::System::pledge("stdio")); Array buffer; for (auto const& file : files) { while (!file->is_eof()) { auto const buffer_span = TRY(file->read(buffer)); out("{:s}", buffer_span); } } return files.size() != paths.size(); }