美文网首页
判断文件夹是否存在

判断文件夹是否存在

作者: _Gaara_ | 来源:发表于2020-08-12 09:03 被阅读0次

在写一些自动化部署脚本的时候,需要用到一些判断语句,这里摘出来一点

  • 特别注意 if 和 [ ] 前后都有一个空格,否则无效果。shell是一个语法十分严格的语言。
myPath="/Top"
myFile="/Top/access.log"

# 这里的-x 参数判断$myPath是否存在并且是否具有可执行权限
if [ ! -x "$myPath"]; then
 mkdir "$myPath"
fi
# 这里的-d 参数判断$myPath是否存在
if [ ! -d "$myPath"]; then
 mkdir "$myPath"
fi
 
# 这里的-f参数判断$myFile是否存在
if [ ! -f "$myFile" ]; then
 touch "$myFile"
fi


# 其他参数还有-n,-n是判断一个变量是否是否有值
if [ ! -n "$myVar" ]; then
 echo "$myVar 变量为空!"
 exit 0
fi
 
# 判断$file字符串内容是否是“123123”相同
if [ "$file1" = "123123" ]; then
 echo "$file1 equal $file2"
else
 echo "$file1 not equal $file2"
fi
echo "befor exit"
exit 8

相关文章

网友评论

      本文标题:判断文件夹是否存在

      本文链接:https://www.haomeiwen.com/subject/ofojrktx.html