第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

Shell 腳本基礎(chǔ) - 使用 if 語句進(jìn)行條件檢測(cè)

標(biāo)簽:
Linux

Bourne Shell 的 if 语句和大部分编程语言一样 - 检测条件是否真实,如果条件为真,shell 会执行这个 if 语句指定的代码块,如果条件为假,shell 就会跳过 if 代码块,继续执行之后的代码。


5ba9fb5200011c9803000358.jpg


if 语句的语法:

if [ 判断条件 ]

then

        command1

        command2

        ……..

        last_command

fi

Example:

#!/bin/bash

number=150

if [ $number -eq 150 ]

then

    echo "Number is 150"

fi

if-else 语句:

除了标准的 if 语句之外,我们还可以加入 else 代码块来扩展 if 语句。这么做的主要目的是:如果 if 条件为真,执行 if 语句里的代码块,如果 if 条件为假,执行 else 语句里的代码块。


语法:

if [ 判断条件 ]

then

       command1

       command2

       ……..

       last_command

else

       command1

       command2

       ……..

       last_command

fi

Example:

#!/bin/bash

number=150

if [ $number -gt 250 ]

then

    echo "Number is greater"

else

    echo "Number is smaller"

fi

If..elif..else..fi 语句 (简写的 else if)

Bourne Shell 的 if 语句语法中,else 语句里的代码块会在 if 条件为假时执行。我们还可以将 if 语句嵌套到一起,来实现多重条件的检测。我们可以使用 elif 语句(else if 的缩写)来构建多重条件的检测。


语法 :

if [ 判断条件1 ]

then

       command1

       command2

       ……..

       last_command

elif [ 判断条件2 ]

then

        command1

        command2

        ……..

        last_command

else

command1

command2

……..

last_command

fi

Example :

#!/bin/bash

number=150

if [ $number -gt 300 ]

then

    echo "Number is greater"

elif [ $number -lt 300 ]

then

    echo "Number is Smaller"

else

    echo "Number is equal to actual value"

fi

多重 if 语句 :

If 和 else 语句可以在一个 bash 脚本里相互嵌套。关键词 “fi” 表示里层 if 语句的结束,所有 if 语句必须使用 关键词 “fi” 来结束。


基本 if 语句的嵌套语法:


if [ 判断条件1 ]

then

        command1

        command2

        ……..

        last_command

else

if [ 判断条件2 ]

then

        command1

        command2

        ……..

        last_command

else

        command1

        command2

         ……..

         last_command

      fi

fi

Example:

#!/bin/bash

number=150

if [ $number -eq 150 ]

then

   echo "Number is 150"

else

if [ $number -gt 150 ]

then

    echo "Number is greater"

else

    echo "'Number is smaller"

   fi

fi

编译自:http://www.linuxtechi.com/shell-scripting-checking-conditions-with-if/作者: Pradeep Kumar
原创:LCTT https://linux.cn/article-4489-1.html译者: ThomazL

點(diǎn)擊查看更多內(nèi)容
TA 點(diǎn)贊

若覺得本文不錯(cuò),就分享一下吧!

評(píng)論

作者其他優(yōu)質(zhì)文章

正在加載中
  • 推薦
  • 評(píng)論
  • 收藏
  • 共同學(xué)習(xí),寫下你的評(píng)論
感謝您的支持,我會(huì)繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會(huì)直接到老師賬戶
支付方式
打開微信掃一掃,即可進(jìn)行掃碼打賞哦
今天注冊(cè)有機(jī)會(huì)得

100積分直接送

付費(fèi)專欄免費(fèi)學(xué)

大額優(yōu)惠券免費(fèi)領(lǐng)

立即參與 放棄機(jī)會(huì)
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)

舉報(bào)

0/150
提交
取消