bash-argument-parser icon indicating copy to clipboard operation
bash-argument-parser copied to clipboard

BASH Argument Parser allows for easy access to command line arguments

Results 7 bash-argument-parser issues
Sort by recently updated
recently updated
newest added

When including in a project which has `set -e` the library fails to run

The README doesn't mention about the `argList` function.

docs

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...

enhancement

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...

enhancement

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...

enhancement

Currently if you leave the description of an argument blank it will still be shown in the usage, it should be skipped instead

enhancement

Add the functionality to set parameters as required

enhancement