bash-argument-parser
bash-argument-parser copied to clipboard
BASH Argument Parser allows for easy access to command line arguments
When including in a project which has `set -e` the library fails to run
Currently the order of the arguments in the usage output is somewhat arbitrary need to order A-Z. Best way to approach it may be to get all the keys of...
Add the ability to define what the type/format of an argument is, for example you could define an argument to only be valid if its only numbers or at least...
Add the ability to turn an argument into an array when its repeatedly passed. For example `--set 1 --set 2 --set 3` would cause `argValue 'set'` to return `(1,2,3)` as...
Currently if you leave the description of an argument blank it will still be shown in the usage, it should be skipped instead