系统相关
首页 > 系统相关> > 【shell】通过if [ $? != 0 ]判断上次程序是否执行成功

【shell】通过if [ $? != 0 ]判断上次程序是否执行成功

作者:互联网

1、问题

在shell脚本里面有时候我们需要判断上一个程序有没有执行成功,比如用chomd 777 file命令,我们可以用通过if [ $? != 0 ]判断

$?这里表示上一次运行的结果

2、代码实现

#!/bin/bash
test()
{
    return 2;    
}
 
test
result=$?
 
echo "result is:"$result
echo "chenyu"
 
if [ $? != 0 ]; then
    echo "last exe fail"
    exit 1
else
    echo "last exe success"
fi
 

3、运行结果

result is:2
chenyu
last exe success

标签:shell,last,程序,echo,exe,chenyu,result,test,上次
来源: https://blog.csdn.net/u011035397/article/details/120249963