Shell流程控制語句while

  while語法格式:vim

while 判斷條件
do
    命令
done

  while語句流程控制圖:bash

 

  實例:blog

[root@youxi1 ~]# vim a.sh
#!/bin/bash
i=0
while [ $i -lt 10 ]  #若是小於10,則執行循環
do
 echo $i
 i=$[i+1]
done
[root@youxi1 ~]# sh a.sh 
0
1
2
3
4
5
6
7
8
9

  同樣可使用雙小括號(())來替換原有的判斷條件,以下:class

[root@youxi1 ~]# vim a.sh
#!/bin/bash
i=0
while ((i<10))
do
 echo $i
 i=$[i+1]
done
[root@youxi1 ~]# sh a.sh
0
1
2
3
4
5
6
7
8
9
相關文章
相關標籤/搜索