Shell case esac語句

來源:互聯網
上載者:User

標籤: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語句

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.