欣喜黑裤

文章
3
资源
0
加入时间
3年0月21天

linux任何命令返回0,linux - 如果任何命令返回非零值,则中止shell脚本?

linux - 如果任何命令返回非零值,则中止shell脚本?我有一个调用许多命令的Bash shell脚本。如果任何命令返回非零值,我希望shell脚本自动退出,返回值为1。如果没有明确检查每个命令的结果,这可能吗?例如dosomething1if [[ $? -ne 0 ]]; thenexit 1fidosomething2if [[ $? -ne 0 ]]; thenexit 1fi9个...