shell命令判断是否成功

#! /bin/bash
//创建test.txt文件 
touch test.txt
if [ $? -eq 0 ]
then
    echo "执行成功"
else
    echo "执行失败"
fi

``chmod +x your file 添加执行权限

最后修改于:2017年03月22日 00:05