mirror of
https://github.com/SerenityOS/serenity
synced 2026-04-25 17:15:42 +02:00
Utilities/dirname: Improve help message
This commit is contained in:
committed by
Nico Weber
parent
271559bd80
commit
68c40377cd
@@ -14,8 +14,9 @@ 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", "path");
|
||||
args_parser.add_positional_argument(paths, "Path to get dirname from", "path");
|
||||
args_parser.parse(arguments);
|
||||
|
||||
auto const delimiter = null_terminated ? '\0' : '\n';
|
||||
|
||||
Reference in New Issue
Block a user