Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* enable use of 'set -u' * prevent errors from 'set -u' when $1 or $2 not set * example of 'set -u' > `set -u` is useful to detect coding errors where variables are unset, and is part of [unofficial strict mode](http://redsymbol.net/articles/unofficial-bash-strict-mode/) for bash. > The code still works without `set -u` enabled, of course. Nice trick, thanks. > Tested under bash 5.0 and 3.2. I will setup a travis build with bash 5, too. Thanks.
- Loading branch information