Bash Scripting - Error Handling
What does the
set -e command do in a bash script?set -e command do in a bash script?set -eset -e option tells bash to exit the script if any command fails (returns a non-zero status).set -e's behavior.set -e = exit on error [OK]set -e means exit on any error [OK]set -e with set -x (debug mode)15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions