mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:57:43 +00:00
readlink: Use StringView instead of const char*
This commit is contained in:
parent
45ac5e90b7
commit
546a6a80a7
1 changed files with 2 additions and 2 deletions
|
@ -14,14 +14,14 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
TRY(Core::System::pledge("stdio rpath"));
|
||||
|
||||
bool no_newline = false;
|
||||
Vector<const char*> paths;
|
||||
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 (const char* path : paths) {
|
||||
for (auto path : paths) {
|
||||
auto destination = TRY(Core::File::read_link(path));
|
||||
out("{}", destination);
|
||||
if (!no_newline)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue