摘要: 原文出处:http://canofy.iteye.com/blog/252289shell判断文件,目录是否存在或者具有权限 #!/bin/shmyPath="/var/log/httpd/"myFile="/var /log/httpd/access.log"#这里的-x 参数判断$myPath是否存在并且是否具有可执行权限if [ ! -x "$myPath"]; thenmkdir "$myPath"fi#这里的-d 参数判断$myPath是否存在if [ ! -d "$myPath"]; 阅读全文
posted @ 2014-04-06 05:25 censai 阅读(464) 评论(0) 推荐(0) 编辑