Skip to content

Support for space delimited lists and equality assignment

Pre-release
Pre-release
Compare
Choose a tag to compare
@hattan hattan released this 08 Mar 07:54
· 30 commits to main since this release
6d56f52
  • Parsing now supports space delimited lists, just like csv. For example you can now pass the following list parameter and it will be converted into a bash array. ./myscript.sh -i 123 345 #results in {123,345}
  • Assign via equality is possible by using the syntax name=value ./myscript.sh --message=helloworld
  • Refactored shArg.sh to smaller, more maintainable functions.
  • Moved specs to unit folder and added integration tests and harness.