summaryrefslogtreecommitdiff
path: root/Userland/Utilities/readlink.cpp
blob: c2d1f095353ff760f3c574aca9cb86aa7fe7c59a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 * Copyright (c) 2020, Sergey Bugaev <bugaevc@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibCore/ArgsParser.h>
#include <LibCore/DeprecatedFile.h>
#include <LibCore/System.h>
#include <LibMain/Main.h>

ErrorOr<int> serenity_main(Main::Arguments arguments)
{
    TRY(Core::System::pledge("stdio rpath"));

    bool no_newline = false;
    Vector<StringView> paths;

    Core::ArgsParser args_parser;
    args_parser.add_option(no_newline, "Do not append a newline", "no-newline", 'n');
    args_parser.add_positional_argument(paths, "Symlink path", "path");
    args_parser.parse(arguments);

    for (auto path : paths) {
        auto destination = TRY(Core::DeprecatedFile::read_link(path));
        out("{}", destination);
        if (!no_newline)
            outln();
    }

    return 0;
}