mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 02:03:06 -05:00
Userland: Add -v verbose flag to 'cp'
This commit is contained in:
parent
fe79b9ff94
commit
7ba28b5b0b
Notes:
sideshowbarker
2024-07-19 01:22:00 +09:00
Author: https://github.com/SpencerCDixon Commit: https://github.com/SerenityOS/serenity/commit/7ba28b5b0ba Pull-request: https://github.com/SerenityOS/serenity/pull/4107
1 changed files with 4 additions and 0 deletions
|
@ -48,11 +48,13 @@ int main(int argc, char** argv)
|
|||
}
|
||||
|
||||
bool recursion_allowed = false;
|
||||
bool verbose = false;
|
||||
Vector<const char*> sources;
|
||||
const char* destination = nullptr;
|
||||
|
||||
Core::ArgsParser args_parser;
|
||||
args_parser.add_option(recursion_allowed, "Copy directories recursively", "recursive", 'r');
|
||||
args_parser.add_option(verbose, "Verbose", "verbose", 'v');
|
||||
args_parser.add_positional_argument(sources, "Source file path", "source");
|
||||
args_parser.add_positional_argument(destination, "Destination file path", "destination");
|
||||
args_parser.parse(argc, argv);
|
||||
|
@ -61,6 +63,8 @@ int main(int argc, char** argv)
|
|||
bool ok = copy_file_or_directory(source, destination, recursion_allowed);
|
||||
if (!ok)
|
||||
return 1;
|
||||
if (verbose)
|
||||
printf("'%s' -> '%s'\n", source, destination);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue