Created
October 4, 2016 14:26
-
-
Save mauromorales/ea97b8775705e8c0ee9719f4167ea746 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
: {$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