自己慢慢积累。
发布时间:2015-06-03 17:03:59
zzz=`LC_ALL=C ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}'|awk NR==1|awk -F "." '{print $4}'`ip=`LC_ALL=C ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}'|awk NR==1`zzz 服务器IP的最后一个字段ip 服务器IP.........【阅读全文】
发布时间:2015-04-27 10:17:28
shell判断文件是否存在 1. shell判断文件,目录是否存在或者具有权限 2. #!/bin/sh 3. 4. myPath="/var/log/httpd/" 5. myFile="/var /log/httpd/access.log" 6. 7. # 这里的-x 参数判断$myPath是否存在并且是否具有可执行权限 8. if [ ! -x "$myPath"]; the.........【阅读全文】