判断文件是否存在的shell脚本代码
实现代码一、 #!/bin/sh # 判断文件是否存在 # link:www.jb51.net # date:2013/2/28 myPath=/var/log/httpd/ myFile=/var /log/httpd/access.log # 这里的-x 参数判断$myPath是否存在并且是否具有可执行权限 if [ ! -x $myPath]; then mkdir $myPath fi # 这里的-d 参数判断$myPath是否存在 if [ ! -d $myPath]; then mkdir $myPath fi # 这里的-f参数判断$myFile是否