How to check if a variable is not set in Bash
if [ -z ${var+x} ]; then echo "var is unset"; else echo "var is set to '$var'"; fi