Linux Shell系列教程之(九)Shell判斷 if else 用法

本文是Linux Shell系列教程的第(九)篇,更多shell教程請看:Linux Shell系列教程html

判斷語句是每一個語言都必不可少的關鍵語法,Shell命令固然也不例外。今天就給你們介紹下Shell判斷語句 if else 用法。linux

shell判斷

if 語句經過關係運算符判斷表達式的真假來決定執行哪一個分支。shell

Shell 有三種 if else格式:express

  1. if … fi 格式
  2. if … else … fi 格式
  3. if … elif … else … fi 格式

下面我就分別就這幾種格式來爲你們詳細介紹下。less

1、Shell判斷語法之if … else 格式

if … else 格式的語法:

if [ expression ]
then
   Statement(s) to be executed if expression is true
fi

說明:

若是 expression 返回 true,then 後邊的語句將會被執行;spa

若是返回 false,不會執行任何語句。code

最後必須以 fi 來結尾閉合 if,fi 就是 if 倒過來拼寫,後面也會碰見。cdn

注意:expression 和方括號([ ])之間必須有空格,不然會有語法錯誤。htm

使用舉例:

#!/bin/sh

a=400
b=800

if [ $a == $b ]
then
   echo "a is equal to b"
fi

if [ $a != $b ]
then
   echo "a is not equal to b"
fi

運行結果:blog

a is not equal to b

2、Shell判斷語法之 if … else … fi 格式

if … else … fi 語句的語法

if [ expression ]
then
   Statement(s) to be executed if expression is true
else
   Statement(s) to be executed if expression is not true
fi

說明:

若是 expression 返回 true,那麼 then 後邊的語句將會被執行;

不然的話,將會執行 else 後邊的語句。

使用舉例:

#!/bin/sh

a=400
b=800

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

執行結果:

a is not equal to b

3、Shell判斷語法之if … elif … fi格式

if … elif … fi 語句能夠對多個條件進行判斷

語法:

if [ expression 1 ]
then
   Statement(s) to be executed if expression 1 is true
elif [ expression 2 ]
then
   Statement(s) to be executed if expression 2 is true
elif [ expression 3 ]
then
   Statement(s) to be executed if expression 3 is true
else
   Statement(s) to be executed if no expression is true
fi

說明:

哪個 expression 的值爲 true,就執行哪一個 expression 後面的語句;

若是都爲 false,那麼不執行任何語句。

使用舉例:

#!/bin/sh

a=400
b=800

if [ $a == $b ]
then
   echo "a is equal to b"
elif [ $a -gt $b ]
then
   echo "a is greater than b"
elif [ $a -lt $b ]
then
   echo "a is less than b"
else
   echo "None of the condition met"
fi

運行結果:

a is less than b

4、其餘說明

if … else 語句也能夠寫成一行,以命令的方式來運行,像這樣:

if test $[2*3] -eq $[1+5]; then echo 'The two numbers are equal!'; fi;

if … else 語句也常常與 test 命令結合使用,以下所示:

num1=$[2*3]
num2=$[1+5]
if test $[num1] -eq $[num2]
then
    echo 'The two numbers are equal!'
else
    echo 'The two numbers are not equal!'
fi

輸出:

The two numbers are equal!

test 命令用於檢查某個條件是否成立,與方括號([ ])相似。

好了,今天對於Shell判斷(Shell if else)用法就先爲你們介紹到這裏,仍是那句話,你們要多多練習纔是。

更多shell教程請看:Linux Shell系列教程


本文由Linux技術達人【 daxue】發表在: Linux大學
本文固定連接: Linux Shell系列教程之(九)Shell判斷 if else 用法
相關文章
相關標籤/搜索