1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 08:54:58 +00:00

Utilities: Change unzip -o option to -d

Other `unzip` implementations universally use `-d` to indicate the
output directory, so let's follow this convention.
This commit is contained in:
Jelle Raaijmakers 2021-06-13 16:59:16 +02:00 committed by Linus Groh
parent ed62fc9a43
commit c247d7a662
2 changed files with 2 additions and 2 deletions

View file

@ -77,7 +77,7 @@ int main(int argc, char** argv)
Core::ArgsParser args_parser;
args_parser.add_option(map_size_limit, "Maximum chunk size to map", "map-size-limit", 0, "size");
args_parser.add_option(output_directory_path, "Directory to receive the archive content", "output-directory", 'o', "path");
args_parser.add_option(output_directory_path, "Directory to receive the archive content", "output-directory", 'd', "path");
args_parser.add_positional_argument(path, "File to unzip", "path", Core::ArgsParser::Required::Yes);
args_parser.parse(argc, argv);