Skip to content

Instantly share code, notes, and snippets.

@nicdoye
Created February 8, 2017 17:30
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 nicdoye/c27d491647d366c32e5b79443913e94a to your computer and use it in GitHub Desktop.
Save nicdoye/c27d491647d366c32e5b79443913e94a to your computer and use it in GitHub Desktop.
bash gotcha
# This is what you'd expect - prints 1
declare var
var=$(false)
echo $?
# This does not do what you'd expect - prints 0
declare var2=$(false)
echo $?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment