mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +00:00
5f99934dce
We previously had at least three different implementations for resolving executables in the PATH, all of which had slightly different characteristics. Merge those into a single implementation to keep the behaviour consistent, and maybe to make that implementation more configurable in the future.
31 lines
802 B
C++
31 lines
802 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <LibCore/File.h>
|
|
#include <LibCore/System.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|
{
|
|
TRY(Core::System::pledge("stdio rpath"));
|
|
|
|
char const* filename = nullptr;
|
|
|
|
Core::ArgsParser args_parser;
|
|
args_parser.add_positional_argument(filename, "Name of executable", "executable");
|
|
args_parser.parse(arguments);
|
|
|
|
auto fullpath = Core::File::resolve_executable_from_environment({ filename, strlen(filename) });
|
|
if (!fullpath.has_value()) {
|
|
warnln("no '{}' in path", filename);
|
|
return 1;
|
|
}
|
|
|
|
outln("{}", fullpath.release_value());
|
|
return 0;
|
|
}
|