標籤:
if語句1) if ... else 語句
if ... else 語句的文法:
if [ expression ]then Statement(s) to be executed if expression is truefi
如果 expression 返回 true,then 後邊的語句將會被執行;如果返回 false,不會執行任何語句。
最後必須以 fi 來結尾閉合 if,fi 就是 if 倒過來拼字,後面也會遇見。
注意:expression 和方括弧([ ])之間必須有空格,否則會有語法錯誤。
2) if ... else ... fi 語句
if ... else ... fi 語句的文法:
if [ expression ]then Statement(s) to be executed if expression is trueelse Statement(s) to be executed if expression is not truefi
如果 expression 返回 true,那麼 then 後邊的語句將會被執行;否則,執行 else 後邊的語句。
3) if ... elif ... fi 語句
if ... elif ... fi 語句可以對多個條件進行判斷,文法為:
if [ expression 1 ]then Statement(s) to be executed if expression 1 is trueelif [ expression 2 ]then Statement(s) to be executed if expression 2 is trueelif [ expression 3 ]then Statement(s) to be executed if expression 3 is trueelse Statement(s) to be executed if no expression is truefi
哪一個 expression 的值為 true,就執行哪個 expression 後面的語句;如果都為 false,那麼不執行任何語句。
case 語句
case ... esac 與其他語言中的 switch ... case 語句類似,是一種多分枝選擇結構。
case 語句匹配一個值或一個模式,如果匹配成功,執行相匹配的命令。case語句格式如下:
case 值 in模式1) command1 command2 command3 ;;模式2) command1 command2 command3 ;;*) command1 command2 command3 ;;esac
case工作方式如上所示。取值後面必須為關鍵字 in,每一模式必須以右括弧結束。取值可以為變數或常數。匹配發現取值符合某一模式後,其間所有命令開始執行直至 ;;。;; 與其他語言中的 break 類似,意思是跳到整個 case 語句的最後。
取值將檢測匹配的每一個模式。一旦模式比對,則執行完匹配模式相應命令後不再繼續其他模式。如果無一匹配模式,使用星號 * 捕獲該值,再執行後面的命令。
1 echo ‘Input a number between 1 to 4‘ 2 echo ‘Your number is:\c‘ 3 read aNum 4 case $aNum in 5 1) echo ‘You select 1‘ 6 ;; 7 2) echo ‘You select 2‘ 8 ;; 9 3) echo ‘You select 3‘10 ;;11 4) echo ‘You select 4‘12 ;;13 *) echo ‘You do not select a number between 1 to 4‘14 ;;15 esac
輸入不同的內容,會有不同的結果,例如:
Input a number between 1 to 4Your number is:3You select 3
shell選擇語句