mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:14:58 +00:00
pkill: Add --ignore-case
as an alias for the -i
option
This commit is contained in:
parent
69b6c6f62c
commit
1e21e95a1b
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ ErrorOr<int> serenity_main(Main::Arguments args)
|
|||
|
||||
Core::ArgsParser args_parser;
|
||||
args_parser.add_option(display_number_of_matches, "Display the number of matching processes", "count", 'c');
|
||||
args_parser.add_option(case_insensitive, "Make matches case-insensitive", nullptr, 'i');
|
||||
args_parser.add_option(case_insensitive, "Make matches case-insensitive", "ignore-case", 'i');
|
||||
args_parser.add_option(echo, "Display what is killed", "echo", 'e');
|
||||
args_parser.add_option(signal, "Signal number to send", "signal", 's', "number");
|
||||
args_parser.add_option(Core::ArgsParser::Option {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue