#! /bin/bash
//创建test.txt文件
touch test.txt
if [ $? -eq 0 ]
then
echo "执行成功"
else
echo "执行失败"
fi
``chmod +x your file 添加执行权限
#! /bin/bash
//创建test.txt文件
touch test.txt
if [ $? -eq 0 ]
then
echo "执行成功"
else
echo "执行失败"
fi
``chmod +x your file 添加执行权限