Skip to content

Instantly share code, notes, and snippets.

@mauromorales
Created October 4, 2016 14:26
Show Gist options
  • Save mauromorales/ea97b8775705e8c0ee9719f4167ea746 to your computer and use it in GitHub Desktop.
Save mauromorales/ea97b8775705e8c0ee9719f4167ea746 to your computer and use it in GitHub Desktop.
: {$DEBUG:?} # returns 0
: exit 1 # returns 0
DEBUG="true"
: {$DEBUG:?} # returns 0
echo ${DEBUG:?} # returns 0 and echoes: "true"
unset DEBUG
echo ${DEBUG:?} # returns 1 with message: "DEBUG: parameter null or not set"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment