mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
500044906d
This is not guaranteed to always work correctly as ArgsParser deals in StringViews and might have a non-properly-null-terminated string as a value. As a bonus, using StringView (and DeprecatedString where necessary) leads to nicer looking code too :^)
34 lines
835 B
C++
34 lines
835 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <LibCore/System.h>
|
|
#include <LibMain/Main.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|
{
|
|
TRY(Core::System::pledge("stdio rpath"));
|
|
|
|
DeprecatedString path;
|
|
|
|
Core::ArgsParser args_parser;
|
|
args_parser.set_general_help(
|
|
"Show the 'real' path of a file, by resolving all symbolic links along the way.");
|
|
args_parser.add_positional_argument(path, "Path to resolve", "path");
|
|
args_parser.parse(arguments);
|
|
|
|
char* value = realpath(path.characters(), nullptr);
|
|
if (value == nullptr) {
|
|
perror("realpath");
|
|
return 1;
|
|
}
|
|
outln("{}", value);
|
|
free(value);
|
|
return 0;
|
|
}
|