What happens if you use the "set -e" in a Bash script?
"set -e"
It will cause Bash to exit if a function or subshell returns a nonzero status code.
It will cause Bash to exit if a conditional returns a non-zero status code.
It will cause Bash to exit if a command, list of commands, compound command, or potentially a pipeline returns a nonzero status code.
It will cause Bash to exit if local, declare, or typeset assignments return a nonzero status code.