http://www.cyberciti.biz/faq/bash-while-loop/

BASH WHILE LOOP SYNTAX

while [ condition ]
do
command1
command2
command3
done

Example:

#!/bin/bash
x=1
while [ $x -le 5 ]
do
echo "Welcome $x times"
x=$(( $x + 1 ))
done

 

#!/bin/bash
while :
do
 echo "infinite loops [ hit CTRL+C to stop]"
done

 

Conditional while loop exit with break statement

while [ condition ]
do
  statements1      #Executed as long as condition is true and/or, up to a disaster-condition if any.
  statements2
 if (disaster-condition)
 then
 break           #Abandon the while lopp.
 fi
 statements3          #While good and, no disaster-condition.
done

 

By tony

自由軟體愛好者~喜歡不斷的思考各種問題,有新的事物都會想去學習嘗試 做實驗並熱衷研究 沒有所謂頂天的技術 只有謙虛及不斷的學習 精進專業,本站主要以分享系統及網路相關知識、資源而建立。 Github http://stnet253.github.io

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *

這個網站採用 Akismet 服務減少垃圾留言。進一步了解 Akismet 如何處理網站訪客的留言資料