Erik P
Erik P
I'm making some fixes / enhancements to optparse & created a basic test suite using BATS to ensure everything is working. Would be nice to get this all into master...
Fix for the '--' issue identified in nk412/optparse#9 and reference in pull request nk412/optparse#10 However, this fix is **just** for the '--' issue. Pull request nk412/optparse#10 adds other unnecessary changes.
Error occurs when a space is in argument default values (or passed from command line too, I believe). This is because the value assignment is not quoted at all in...
Optparse breaks when `set -o nounset` is enabled. This option makes bash generate an error when an uninitialized variable is encountered. Having this option on is generally good practice, kinda...