shell 判断文件和路径

#!/bin/sh

filePath="/Users/xxx" 
fileName="/Users/xxx/xxx" 

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

#这里的-d 参数判断$myPath是否存在 
if [ ! -d "$filePath"]; then 
mkdir "$filePath" 
fi 

#这里的-f参数判断$myFile是否存在 
if [ ! -f "$fileName" ]; then 
touch "$fileName" 
fi 

#其他参数还有-n,-n是判断一个变量是否是否有值 
if [ ! -n "$myVar" ]; then 
echo "$myVar is empty" 
exit 0 
fi

[@more @]


郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。