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基礎教程二十四: shell基礎教程: Shell檔案包含
- Shell基礎教程七:Shell字串字串
- Shell雙重fou迴圈
- shell指令碼之迴圈指令碼
- shell基礎
- Xamarin.Forms Shell基礎教程(1)ORM
- shell 基礎命令
- 03 shell基礎
- shell入門基礎
- shell基礎應用
- 9.Shell基礎
- Linux shell基礎3Linux
- Linux shell基礎1Linux
- Linux shell基礎2Linux
- 04 shell程式設計之迴圈語句程式設計
- Shell指令碼應用 – for、while迴圈語句指令碼While
- shell語句無限迴圈小常識
- Shell程式設計-基礎程式設計
- shell程式設計基礎程式設計
- 『忘了再學』Shell基礎 — 20、Shell中的運算子
- shell基礎教程二十一: shell指令碼中echo顯示內容帶顏色指令碼
- Xamarin.FormsShell基礎教程(2)建立Shell解決方案ORM
- Xamarin.FormsShell基礎教程(3)Shell專案構成ORM
- Xamarin.FormsShell基礎教程(8)Shell的模版構成ORM
- Kotlin中 until和..的區別(迴圈)Kotlin
- Shell指令碼之for迴圈語句的應用指令碼
- 『忘了再學』Shell基礎 — 2、Shell的作用與分類
- Linux學習-shell基礎02Linux
- Linux基礎五(shell指令碼)Linux指令碼
- shell程式設計基礎二程式設計
- python 基礎 迴圈Python
- Xamarin.FormsShell基礎教程(9)Shell相關類體系ORM
- 【基礎題】【for迴圈】二重迴圈
- 『忘了再學』Shell流程控制 — 36、for迴圈介紹
- 『忘了再學』Shell基礎 — 24、Shell正規表示式的使用
- shell基礎 — 基本正規表示式
- Linux shell基礎知識_8(下)Linux
- Linux 筆記分享四:Shell 基礎Linux筆記