Closed ADustyOldMuffin closed 4 years ago
From using other CLI tools it's common to have multiple character short names to avoid clashing of commands I.E. --save, -s --saveFile, -sf
--save, -s
--saveFile, -sf
Is it possible that support for this could be added?
No, because multiple single characters are treated separately, so -sf is evaluated as -s -f. This comes as a result of CliFx's context-agnostic design philosophy.
-sf
-s -f
From using other CLI tools it's common to have multiple character short names to avoid clashing of commands I.E.
--save, -s
--saveFile, -sf
Is it possible that support for this could be added?