Last active
April 24, 2019 09:54
-
-
Save silversonicaxel/ae81182b8b92837212fb1ff0c3e89fa6 to your computer and use it in GitHub Desktop.
SHELL SCRIPT #bash #shellscript
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
# exit when any command fails | |
set -o errexit | |
# exit when script uses undeclared variables | |
set -o nounset | |
# trace executed commands | |
set -o xtrace |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment