Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jstangroome/0429daf0b8e2eaf17fc9271deb58182f to your computer and use it in GitHub Desktop.
Save jstangroome/0429daf0b8e2eaf17fc9271deb58182f to your computer and use it in GitHub Desktop.
$ a=; unset b; echo -e "\na- => ${a-nope}\na:- => ${a:-nope}\nb- => ${b-nope}\nb:- => ${b:-nope}"
a- =>
a:- => nope
b- => nope
b:- => nope
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment