#!/bin/bash #check php-fpm server up/down TelLog=/tmp/telphp.log while : do sleep 15; /usr/bin/telnet 127.0.0.1 9000 << ! > $TelLog quit ! SOK=`cat $TelLog | grep "Escape character" |wc -l` i...
因为要统计一批机器的硬件信息,网上临时搜索了一个脚本,记录下来,以后备用。 #!/bin/bash Line='===========' #linux发行版名称 if [[ -f /usr/bin/lsb_release ]]; then OS=$(/usr/bin/lsb_release -a |grep Description |awk -F : '{print $...