我有一个shell脚本(父),它正在调用其他一些shell脚本。假设子shell脚本无法执行,那么也应该停止父shell脚本而不执行下一个子shell脚本。如何自动完成此过程?
例如:
main.sh
//inside the main.sh following code is there
child1.sh //executed successfully
child2.sh //error occurred
child3.sh //Skip this process
//end of main.sh
答案 0 :(得分:5)
最简单的机制是:
set -e
这意味着只要子进程以失败状态退出,shell就会退出,除非状态作为条件的一部分进行测试。
set -e
false # Exits
echo Not executed # Not executed
set -e
if false # Does not exit
then echo False is true
else echo False is false # This is executed
fi
答案 1 :(得分:2)
child1.sh && child2.sh && child3.sh
在上面的child2.sh只有在child1.sh成功完成时执行,并且只有在child2.sh成功完成时才执行child3.sh。
可替换地:
child1.sh || exit 1
child2.sh || exit 1
child3.sh || exit 1
在上面,父脚本在任何一个孩子失败后退出。