mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
a91a49337c
...and make it an enum class so people don't omit "OpenMode".
56 lines
1.4 KiB
C++
56 lines
1.4 KiB
C++
/*
|
|
* Copyright (c) 2021, Thomas Voss <thomasvoss@live.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/String.h>
|
|
#include <AK/Vector.h>
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <LibCore/File.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
if (pledge("stdio rpath", nullptr) < 0) {
|
|
perror("pledge");
|
|
return 1;
|
|
}
|
|
|
|
Vector<String> paths;
|
|
Core::ArgsParser args_parser;
|
|
|
|
args_parser.set_general_help("Concatente files to stdout with each line in reverse.");
|
|
args_parser.add_positional_argument(paths, "File path", "path", Core::ArgsParser::Required::No);
|
|
args_parser.parse(argc, argv);
|
|
|
|
Vector<RefPtr<Core::File>> files;
|
|
if (paths.is_empty()) {
|
|
files.append(Core::File::standard_input());
|
|
} else {
|
|
for (auto const& path : paths) {
|
|
auto file_or_error = Core::File::open(path, Core::OpenMode::ReadOnly);
|
|
if (file_or_error.is_error()) {
|
|
warnln("Failed to open {}: {}", path, file_or_error.error());
|
|
continue;
|
|
}
|
|
|
|
files.append(file_or_error.value());
|
|
}
|
|
}
|
|
|
|
if (pledge("stdio", nullptr) < 0) {
|
|
perror("pledge");
|
|
return 1;
|
|
}
|
|
|
|
for (auto& file : files) {
|
|
while (file->can_read_line()) {
|
|
auto line = file->read_line();
|
|
outln("{}", line.reverse());
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|