摘要:
用shell脚本判断文件或目录是否存在,判断是否有某些权限。#!/bin/sh #check file or directory or permission#edit www.jbxue.commyPath="/var/log/httpd/" myFile="/var /log/httpd/access.log" #这里的-x 参数判断$myPath是否存在并且是否具有可执行权限 if [ ! -x "$myPath"]; then mkdir "$myPath" fi #这里的-d 参数判断$myPath是否存在 阅读全文