mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03:00
32 lines
796 B
C++
32 lines
796 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/String.h>
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
if (pledge("stdio", nullptr) < 0) {
|
|
perror("pledge");
|
|
return 1;
|
|
}
|
|
|
|
Vector<const char*> values;
|
|
bool no_trailing_newline = false;
|
|
|
|
Core::ArgsParser args_parser;
|
|
args_parser.add_option(no_trailing_newline, "Do not output a trailing newline", nullptr, 'n');
|
|
args_parser.add_positional_argument(values, "Values to print out", "string", Core::ArgsParser::Required::No);
|
|
args_parser.parse(argc, argv);
|
|
|
|
out("{}", String::join(' ', values));
|
|
if (!no_trailing_newline)
|
|
outln();
|
|
return 0;
|
|
}
|