目录
格式一:
例:1加到100
格式二:
例:循环检测apache
对while循环来讲,只要条件判断式成立,循环就会一直继续,直到条件判断式不成立循环才会停止。
格式一:
while [条件判断式] do程序done
例:1加到100
[root@localhost ~]# cat while.sh
#!/bin/bash
i=1
s=0
while [ $i -le 100 ] do s=$(( $s+$i)) i=$(( $i+1)) done
echo "the sum si:$s"
格式二:
#while另一种格式
while truedocommand done
例:循环检测apache
[root@localhost ~]# cat autostart.sh
#!/bin/bash
while true
do
port=$(nmap -sT 192.168.22.222 | grep tcp | grep http | awk '{print $2}')
if [ "$port" == "open" ]then echo "$(date) httpd is ok!" >> /tmp/autostart-acc.logelse /etc/rc.d/init.d/httpd start &> /dev/nullecho "$(date) restart httpd!!" >> /tmp/autostart-err.log
fi
sleep 5 #检测的间隔时间为5秒。
done