ZoctopusD 2011-09-15
今天要写更新脚本,对shell以前不熟,把一些有用的做个记录
grep-v查找不包含行的
netstat-anp|grep-c'${BACKEND}:8080'查看还有多少连接过来
curl-o/dev/null-s-w%{http_code}:%{time_connect}:%{time_starttransfer}:%{time_total}-m100http://www.baidu.com
-o文件输出目录,-s没有输出,-w结果格式,用来查看服务器是否起来
${varible##*string}从左向右截取最后一个string后的字符串
${varible#*string}从左向右截取第一个string后的字符串
${varible%%string*}从右向左截取最后一个string后的字符串
${varible%string*}从右向左截取第一个string后的字符串