Closed Hejsil closed 6 years ago
This should work: command -Dvalue. Here, value is the value of the argument D, if D is a short arg and takes a value.
command -Dvalue
value
D
Questions:
command -value
v
alue
-aDvalue
a
-aD=value
command -Dvalue=2
value=2
This should work:
command -Dvalue
. Here,value
is the value of the argumentD
, ifD
is a short arg and takes a value.Questions:
command -value
, wherev
is a short arg, andalue
is its value?-aDvalue
, wherea
andD
are short args.a
doesn't take a value, andD
does.-aD=value
works.command -Dvalue=2
? Here,D
is a short arg taking a value, andvalue=2
is its value.