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
Bundling of single character options
i.e createuser.exe Inigo -force -administrator becomes createuser.exe -fa where f and a are aliases for force and administrator DO:Done
What does our lexer support:
i.e.
getuser.exe -first Inigo -last Montoya
orgetuser.exe -last Montoya -first Inigo
DO:Done
i.e.
getuser.exe Inigo Montoya
DO: See Allow arguments for options using position rather than name #29.
i.e.
getuser.exe -name Paul -name Mary
DO:Done
i.e.
getuser.exe -name Paul,Mary
DO: See Allow an option to have multiple values assigned using a comma-separated list #37
i.e
createuser.exe Inigo -force -administrator
becomescreateuser.exe -fa
wheref
anda
are aliases forforce
andadministrator
DO:Done
i.e.
getuser.exe -fi Inigo -las Montoya
DO: See Add option name abbreviation (startswith) support (Off by default) #38 (lower priority)
i.e. 'getuser.exe -firstname = 'Inigo'
DO: Done
i.e. 'getuser.exe -nInigo`
DO: See Support argument assignment immediately following option name #39
...
The text was updated successfully, but these errors were encountered: