shell命令判断是否成功 #! /bin/bash //创建test.txt文件 touch test.txt if [ $? -eq 0 ] then echo "执行成功" else echo "执行失败& ...