You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Have command with a required option argument with a short name (e.g -a).
Have command with a required option argument with a short name (e.g -bc).
Run the command with the option argument but with no space after the argument name (e.g commandname -asdf).
Run the command with the option argument but with no space after the argument name (e.g commandname -bcd).
Actual result:
Command runs and option argument -a has value "sdf".
error: unknown option '-bcd'
Can short option with single character report the same error like issue 2?