上一页 1 ··· 28 29 30 31 32
摘要: 用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是否存在 阅读全文
posted @ 2013-06-11 08:03 un123 阅读(399) 评论(0) 推荐(0) 编辑
摘要: 博客园第一天!俺来了。 阅读全文
posted @ 2013-05-24 21:18 un123 阅读(179) 评论(5) 推荐(0) 编辑
上一页 1 ··· 28 29 30 31 32