Especially for Unix/Linux platforms, the convention is usually to provide options before arguments:
Usage: grep [OPTION]... PATTERN [FILE]...
Usage: tar [OPTION...] [FILE]...
systemctl [OPTIONS...] {COMMAND} ...
Using boolean options before arguments currently gets incorrectly interpreted as assigning a value to the option flag. Would be good to support this ordering (preferably alongside existing behaviour).
Especially for Unix/Linux platforms, the convention is usually to provide options before arguments:
Usage: grep [OPTION]... PATTERN [FILE]... Usage: tar [OPTION...] [FILE]... systemctl [OPTIONS...] {COMMAND} ...Using boolean options before arguments currently gets incorrectly interpreted as assigning a value to the option flag. Would be good to support this ordering (preferably alongside existing behaviour).