標籤:style blog color io os 使用 java sp div
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到4,與每一種模式進行匹配:
#!/bin/bashecho ‘Input a number between 1 to 4‘echo -e ‘Your number is:\c‘read aNumcase $aNum in 1) echo ‘You select 1‘ ;; 2) echo ‘You select 2‘ ;; 3) echo ‘You select 3‘ ;; 4) echo ‘You select 4‘ ;; *) echo ‘You do not select a number between 1 to 4‘ ;;esac:<<EOF 我就想要想java那樣,如果是1則執行1 2不過不行case $aNum in 1) echo ‘You select 1‘ 2) echo ‘You select 2‘ ;; 3) echo ‘You select 3‘ ;; 4) echo ‘You select 4‘ ;; *) echo ‘You do not select a number between 1 to 4‘ ;;esacEOF
輸入不同的內容,會有不同的結果,例如:
Input a number between 1 to 4Your number is:3You select 3
再舉一個例子:
#!/bin/bashoption="${1}"case ${option} in -f) FILE="${2}" echo "File name is $FILE" ;; -d) DIR="${2}" echo "Dir name is $DIR" ;; *) echo "$(basename ${0}):usage: [-f file] | [-d directory]" exit 1 #Command to come out of the program with status 1esac
運行結果:
[[email protected] shell]# bash case2.shcase2.sh:usage: [-f file] | [-d directory][[email protected] shell]# bash case2.sh -f index.htmlFile name is index.html[[email protected] shell]# bash case2.sh -d unixDir name is unix
Shell case esac語句