When short commands expect a value, they interpret anything that is combined with them as a value instead of parsing short options.
This results in:
./program -Qq test
to be standardized as:
./program -Q q test
instead of:
./program -Q -q test
When short commands expect a value, they interpret anything that is combined with them as a value instead of parsing short options.
This results in:
```
./program -Qq test
```
to be standardized as:
```
./program -Q q test
```
instead of:
```
./program -Q -q test
```