Shell指令碼的條件控制和迴圈語句_linux shell

來源:互聯網
上載者:User

條件判斷:if語句

文法格式:

if [ expression ]thenStatement(s) to be executed if expression is truefi

注意:expression 和方括弧([ ])之間必須有空格,否則會有語法錯誤。

if 語句通過關係運算子判斷運算式的真假來決定執行哪個分支。Shell 有三種 if ... else 語句:

if ... fi 語句if ... else ... fi 語句if ... elif ... else ... fi 語句

樣本:

#!/bin/bash/a=10b=20if [ $a == $b ]then echo "a is equal to b"elif [ $a -gt $b ]thenecho "a is greater to b"elseecho "a is less to b"fi

if ... else 語句也可以寫成一行,以命令的方式來運行:

a=10;b=20;if [ $a == $b ];then echo "a is equal to b";else echo "a is not equal to b";fi;

if ... else 語句也經常與 test 命令結合使用,作用與上面一樣:

#!/bin/bash/a=10b=20if test $a == $b then echo "a is equal to b"elseecho "a is not equal to b"fi

分支控制:case語句

case ... esac 與其他語言中的 switch ... case 語句類似,是一種多分枝選擇結構。

樣本:

#!/bin/bash/grade="B"case $grade in "A") echo "Very Good!";;"B") echo "Good!";;"C") echo "Come On!";;*) echo "You Must Try!"echo "Sorry!";;esac

轉換成C語言是:

#include <stdio.h>int main(){char grade = 'B';switch(grade){case 'A': printf("Very Good!");break;case 'B': printf("Very Good!");break;case 'C': printf("Very Good!");break;default: printf("You Must Try!");printf("Sorry!");break;}return 0;}

對比看就很容易理解了。很相似,只是格式不一樣。

需要注意的是:

取值後面必須為關鍵字 in,每一模式必須以右括弧結束。取值可以為變數或常數。匹配發現取值符合某一模式後,其間所有命令開始執行直至 ;;。;; 與其他語言中的 break 類似,意思是跳到整個 case 語句的最後。

取值將檢測匹配的每一個模式。一旦模式比對,則執行完匹配模式相應命令後不再繼續其他模式。如果無一匹配模式,使用星號 * 捕獲該值,再執行後面的命令。

再舉一個例子:

#!/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 1;;esac

運行結果:

$./test.shtest.sh: usage: [ -f filename ] | [ -d directory ]./test.sh -f index.htmlFile name is index.html

這裡用到了特殊變數${1},指的是擷取命令列的第一個參數。

for迴圈

shell的for迴圈與c、php等語言不同,同Python很類似。下面是文法格式:

for 變數 in 列表

docommand1command2...commandNdone

樣本:

#!/bin/bash/for value in 1 2 3 4 5do echo "The value is $value"done

輸出:

The value is 1The value is 2The value is 3The value is 4The value is 5

順序輸出字串中的字元:

for str in 'This is a string'doecho $strdone

運行結果:

This is a string

遍曆目錄下的檔案:

#!/bin/bashfor FILE in *doecho $FILEdone

上面的代碼將遍曆目前的目錄下所有的檔案。在Linux下,可以改為其他目錄試試。

遍曆檔案內容:

city.txt

beijingtianjinshanghai#!/bin/bashcitys=`cat city.txt`for city in $citysecho $citydone

輸出:

beijing
tianjin
shanghai

while迴圈

只要while後面的條件滿足,就一直執行do裡面的代碼塊。

其格式為:

while command
do
Statement(s) to be executed if command is true
done

命令執行完畢,控制返回迴圈頂部,從頭開始直至測試條件為假。

樣本:

#!/bin/bashc=0;while [ $c -lt 3 ]doecho "Value c is $c"c=`expr $c + 1`done

輸出:

Value c is 0
Value c is 1
Value c is 2

這裡由於shell本身不支援算數運算,所以使用expr命令進行自增。

until迴圈

until 迴圈執行一系列命令直至條件為 true 時停止。until 迴圈與 while 迴圈在處理方式上剛好相反。一般while迴圈優於until迴圈,但在某些時候,也只是極少數情況下,until 迴圈更加有用。

將上面while迴圈的例子改改,就能達到一樣的效果:

#!/bin/bashc=0;until [ $c -eq 3 ]doecho "Value c is $c"c=`expr $c + 1`done

首先do裡面的語句塊一直在運行,直到滿足了until的條件就停止。

輸出:

Value c is 0
Value c is 1
Value c is 2

跳出迴圈

在迴圈過程中,有時候需要在未達到迴圈結束條件時強制跳出迴圈,像大多數程式設計語言一樣,Shell也使用 break 和 continue 來跳出迴圈。

break

break命令允許跳出所有迴圈(終止執行後面的所有迴圈)。

#!/bin/bashi=0while [ $i -lt 5 ]doi=`expr $i + 1`if [ $i == 3 ]thenbreakfiecho -e $idone

運行結果:

1
2

在嵌套迴圈中,break 命令後面還可以跟一個整數,表示跳出第幾層迴圈。例如:

break n

表示跳出第 n 層迴圈。

continue

continue命令與break命令類似,只有一點差別,它不會跳出所有迴圈,僅僅跳出當前迴圈。

#!/bin/bashi=0while [ $i -lt 5 ]doi=`expr $i + 1`if [ $i == 3 ]thencontinuefiecho -e $idone

運行結果:

1
2
4
5

以上內容是小編給大家介紹的Shell指令碼的條件控制和迴圈語句的相關知識,希望對大家有所協助!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.