Bash serial execution of commands and exit on critical
If you want to executue the shell commands serially in bash script but also want to keep checking and exit if any of the command fails</p>
set this at the top of your script
set -e
set -o pipefail</div>