shell基礎教程 十六: Shell until迴圈
until
迴圈執行一系列命令直至條件為 true
時停止。until
迴圈與 while
迴圈在處理方式上剛好相反。一般while
迴圈優於until
迴圈,但在某些時候,也只是極少數情況下,until 迴圈更加有用。
until 迴圈格式為:
until command
do
Statement(s) to be executed until command is true
done
command
一般為條件表示式,如果返回值為 false
,則繼續執行迴圈體內的語句,否則跳出迴圈。
例如,使用 until 命令輸出 0 ~ 9 的數字:
#!/bin/bash
a=0
until [ ! $a -lt 10 ]
do
echo $a
a=`expr $a + 1`
done
執行結果:
0
1
2
3
4
5
6
7
8
9
相關文章
- [shell基礎]——if/for/while/until/case 語句While
- shell基礎教程二十四: shell基礎教程: Shell檔案包含
- Shell基礎教程七:Shell字串字串
- Linux shell迴圈Linux
- shell指令碼之迴圈指令碼
- shell死迴圈指令碼示例指令碼
- shell基礎
- Xamarin.Forms Shell基礎教程(1)ORM
- Python基礎教程06 - 迴圈Python
- shell基礎篇(二)-shell變數變數
- shell 基礎命令
- shell基礎(轉)
- 03 shell基礎
- Linux Shell程式設計(16)——迴圈Linux程式設計
- shell基礎應用
- 9.Shell基礎
- Shell基礎-管道符
- [shell基礎]——變數變數
- [shell基礎]——echo命令
- [shell基礎]——sed命令
- [shell基礎]——find命令
- [shell基礎]——uniq命令
- [shell基礎]——sort命令
- [shell基礎]——paste命令AST
- [shell基礎]——join命令
- [shell基礎]——split命令
- [shell基礎]——tr命令
- [shell基礎]——陣列陣列
- Linux shell 基礎Linux
- Shell指令碼基礎指令碼
- Bash Shell 基礎特性
- shell入門基礎
- Python 快速教程(基礎篇06): 迴圈Python
- Shell指令碼應用 – for、while迴圈語句指令碼While
- 04 shell程式設計之迴圈語句程式設計
- Linux Shell程式設計(18)—— 迴圈控制Linux程式設計
- 【基礎題】【for迴圈】二重迴圈
- Linux shell基礎3Linux