shell代码,帮挑错,超简单 判断temp文件夹是否存在 if [ -d "temp" ]
发布网友
发布时间:2022-05-09 20:46
我来回答
共2个回答
热心网友
时间:2023-10-18 21:38
if [ -d "temp" ] ; then #注意:大符号]之后有;
echo "temp"
else
echo "not found temp"
fi
或者你也可以写成这样的方式
if [ -d "temp" ] #这样不用加;
then
echo "temp"
else
echo "not found temp"
fi
热心网友
时间:2023-10-18 21:38
一行写出来:
if [ -d temp ];then rm -rf temp; echo "delete"; else "create"; fi