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

Userland: Let env parse options up to first non-option

This commit is contained in:
Jelle Raaijmakers 2021-06-07 21:27:21 +02:00 committed by Andreas Kling
parent d7126fbbc2
commit 001c81b1be

View file

@ -22,6 +22,8 @@ int main(int argc, char** argv)
Vector<const char*> values;
Core::ArgsParser args_parser;
args_parser.set_stop_on_first_non_option(true);
args_parser.add_option(ignore_env, "Start with an empty environment", "ignore-environment", 'i');
args_parser.add_option(split_string, "Process and split S into separate arguments; used to pass multiple arguments on shebang lines", "split-string", 'S', "S");