Leif160519的blog Leif160519的blog

——————

目录
shell脚本中判断上一个命令是否执行成功
/    

shell脚本中判断上一个命令是否执行成功

shell中使用符号“$?”来显示上一条命令执行的返回值,如果为0则代表执行成功,其他表示失败。

结合if-else语句实现判断上一个命令是否执行成功。

示例如下:

if [ $? -ne 0 ]; then
    echo "failed"
else
    echo "succeed"
fi

或者:

if [ $? -eq 0 ]; then
    echo "succeed"
else
    echo "failed"
fi

另外
shell中的比较符号如下:

-eq等于
-ne不等于
-gt大于
-lt小于
ge大于等于
le小于等于

“The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.” – Tom Cargill

标  题shell脚本中判断上一个命令是否执行成功
作  者Leif160519
出  处https://github.icu/articles/2019/08/29/1567066526963.html
关于博主:坐标六朝古都南京,服务器运维工程师+桌面运维工程师,如有问题探讨可以直接下方留言。
声援博主:如果您觉得文章对您有帮助,可以评论、订阅、收藏。您的鼓励是博主的最大动力!