commandeer
commandeer copied to clipboard
Take command of your command line in Nim
```nim commandline: option variableA, string, "var", "v", "default" ``` ```sh # none of the following work executable --var: # out: Missing value for option 'var' executable --var= # out: Missing...
I have been using comandeer happily, but now need to collect multiple values of an argument. To support this, if an option is specified as: ``` option name, seq[type], long,...
This module should automatically generate the help text based on the command line interface provided and not force you to repeat yourself. Kinda the opposite of: https://github.com/docopt/docopt.nim