forked from SerenityOS/serenity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dirname.cpp
27 lines (23 loc) · 900 Bytes
/
dirname.cpp
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
/*
* Copyright (c) 2020, Andreas Kling <[email protected]>
* Copyright (c) 2023, Tim Ledbetter <[email protected]>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/LexicalPath.h>
#include <LibCore/ArgsParser.h>
#include <LibMain/Main.h>
ErrorOr<int> serenity_main(Main::Arguments arguments)
{
bool null_terminated = false;
Vector<ByteString> paths;
Core::ArgsParser args_parser;
args_parser.set_general_help("Return the directory portion of the given path(s).");
args_parser.add_option(null_terminated, "End each output line with \\0, rather than \\n", "zero", 'z');
args_parser.add_positional_argument(paths, "Path to get dirname from", "path");
args_parser.parse(arguments);
auto const delimiter = null_terminated ? '\0' : '\n';
for (auto const& path : paths)
out("{}{}", LexicalPath::dirname(path), delimiter);
return 0;
}