首页 > 代码库 > shell

shell


#获取ip,以(空格和:)同时做分隔符

IP=`ifconfig eth0 |awk -F ‘[ :]+‘ ‘NR==2 {print $4}‘`

IP=`ifconfig eth0|grep ‘inet addr‘|awk -F ‘[ :]‘ ‘{print $13}‘`


#IP=`/sbin/ifconfig|sed -n ‘/inet addr/s/^[^:]*:\([0-9.]\{7,15\}\) .*/\1/1p‘|sed -n ‘1p‘`


#查看Web服务器(nginx apache)的并发请求数及其TCP连接状态

#查看连接情况

netstat -n | awk ‘/^tcp/ {++state[$NF]} END {for(key in state) print key,"\t",state[key]}‘

ss -ant | awk ‘NR>1 {++s[$1]} END {for(k in s) print k,s[k]}‘



chkconfig |egrep ‘httpd|mysqld|zabbix*|iptables‘


本文出自 “尽力而为” 博客,请务必保留此出处http://yanjiu.blog.51cto.com/673670/1911601

shell