What's Changed
- Feature: Follow posix conventions for command line arguments #148 by @gerardog in #179
- Short options without arguments can be grouped (
gsudo -n -w -d
=>gsudo -nwd
) - Short options with arguments now accepts space/no-space/equals as separator (
gsudo -i Low
=>gsudo -iLow
orgsudo -i=Low
) - For example
gsudo -i Low -n -w -d --debug MyProgram.exe
can now be written asgsudo -iLow -nwd --debug MyProgram.exe
allowedgsudo -i=Low -nwd --debug MyProgram.exe
allowedgsudo -i Low -nwd --debug MyProgram.exe
allowed
- Short options without arguments can be grouped (
Full Changelog: v1.6.0...v1.7.0