Created
April 2, 2014 06:18
-
-
Save supki/9928819 to your computer and use it in GitHub Desktop.
This file contains 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
#!/usr/bin/env bash | |
set -o errexit | |
fun-global () | |
{ | |
FOO=$(exit 1) | |
echo "fun-global: this won't be printed" | |
} | |
fun-local () | |
{ | |
local BAR=$(exit 1) | |
echo "fun-local: this *will* be printed" | |
} | |
fun-global || fun-local | |
# % ./eblo.sh | |
# fun-global: this won't be printed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment