Fix quoting

This commit is contained in:
Kevin Cotugno 2017-10-31 16:57:45 -07:00
parent 82d5947e13
commit d15a5cf39f

View File

@ -31,10 +31,10 @@ if (( !$? )) && [[ -d "$DEVPATH/go" ]]; then
fi
function passgen () {
local len=$1
local lower=$2
local len="$1"
local lower="$2"
echo $len | grep -q '^[0-9]+$'
echo "$len" | grep -q '^[0-9]+$'
if (( ! $? )); then
len=32
fi
@ -44,7 +44,7 @@ function passgen () {
local tr2="[:lower:]"
fi
cat /dev/urandom | base64 | head -c $len | tr -d "\n" | \
cat /dev/urandom | base64 | head -c "$len" | tr -d "\n" | \
tr "$tr1" "$tr2" && echo
}