20.11/20.12 while循環

while循環

  • 語法 while 條件; do … ; done
  • 案例1
    • 每隔1分鐘檢查一下系統負載,當系統的負載大於10的時候,發一封郵件(監控腳本)
      • 最小單元是任務計劃 cron
#!/bin/bash
while :
# 冒號 : 表示死循環的意思,或者1,或者 true都是死循環
do
    load=`w|head -1|awk -F 'load average: ' '{print $2}'|cut -d. -f1`
    if [ $load -gt 10 ]
    then
           /usr/local/sbin/mail.py xxx@163.com "load high" "$load"
    fi
    sleep 30
#休眠30秒,由於檢查系統負載,不須要一直去檢查,過一會再看
done
[root@hf-01 shell]# sh -x while1.sh 
+ :
++ w
++ head -1
++ awk -F 'load average: ' '{print $2}'
++ cut -d. -f1
+ load=0
+ '[' 0 -gt 10 ']'
+ sleep 30
若想這種腳本不意外的終止,能夠打開screen,在screen跑腳本
  • 知識點shell

    • w //查看系統負載 ;
    • uptime 能夠直接顯示 w 系統負載的第一行,就能夠省去 head -1
    • head -1 //取第一行
    • awk -F 'load average: ' '{print $2}' // 以'load average: '分隔,輸出第二段
    • cut -d . -f1 // 以 . 分隔 取第一段
  • while循環案例2bash

    • 在循環過程過,須要用戶輸入一個數字;輸入的不是數字,是數字,輸入爲空;迴應相應的結果
#!/bin/bash
while :
do
    read -p "Please input a number: " n
    if [ -z "$n" ]
    then
        echo "you need input sth."
        continue
#continue 從新回到循環
    fi
    n1=`echo $n|sed 's/[0-9]//g'`
    if [ -n "$n1" ]
    then
        echo "you just only input numbers."
        continue
    fi
    break
#break  退出循環
done
echo $n
相關文章
相關標籤/搜索