set -e 或者 set -o errexit 指出错时脚本立即退出,但是有很多 奇奇怪怪的问题。
set -e
set -o errexit
set -x 或者 bash -x <script.sh> 可以打印详细的执行信息。
set -x
bash -x <script.sh>