Quote vals in Bash libs. Add tests for log_warn_die.sh and alt_cmds.sh. Make --help test path independent.

This commit is contained in:
Daniel Nichter
2012-01-11 11:31:41 -07:00
parent 650641b052
commit a9afea4506
9 changed files with 87 additions and 59 deletions

View File

@@ -25,7 +25,7 @@ set -u
# seq N, return 1, ..., 5
_seq() {
local i=$1
local i="$1"
awk "BEGIN { for(i=1; i<=$i; i++) print i; }"
}