91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

在Linux系統中Shell腳本使用if語句的方法

發布時間:2021-08-03 10:31:17 來源:億速云 閱讀:166 作者:chen 欄目:系統運維

這篇文章主要講解了“在Linux系統中Shell腳本使用if語句的方法”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“在Linux系統中Shell腳本使用if語句的方法”吧!

Bourne Shell 的 if 語句和大部分編程語言一樣 - 檢測條件是否真實,如果條件為真,shell 會執行這個 if 語句指定的代碼塊,如果條件為假,shell 就會跳過 if 代碼塊,繼續執行之后的代碼。
在Linux系統中Shell腳本使用if語句的方法

if 語句的語法:

   

代碼如下:

if [ 判斷條件 ]
   then
           command1
           command2
           ……..
           last_command
   fi</p> <p>Example:</p> <p>    #!/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
          &hellip;&hellip;..
          last_command
   else
          command1
          command2
          &hellip;&hellip;..
          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
          &hellip;&hellip;..
          last_command
   elif [ 判斷條件2 ]
   then
           command1
           command2
           &hellip;&hellip;..
           last_command
   else
   command1
   command2
   &hellip;&hellip;..
   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
           &hellip;&hellip;..
           last_command
   else
   if [ 判斷條件2 ]
   then
           command1
           command2
           &hellip;&hellip;..
           last_command
   else
           command1
           command2
            &hellip;&hellip;..
            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

感謝各位的閱讀,以上就是“在Linux系統中Shell腳本使用if語句的方法”的內容了,經過本文的學習后,相信大家對在Linux系統中Shell腳本使用if語句的方法這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

卢龙县| 格尔木市| 镇沅| 五家渠市| 巍山| 安多县| 三穗县| 天门市| 灵石县| 全州县| 张北县| 鄢陵县| 阳山县| 碌曲县| 阜平县| 聊城市| 江西省| 万盛区| 龙州县| 聂荣县| 洛扎县| 开阳县| 开远市| 苍溪县| 诸城市| 洪泽县| 隆化县| 建水县| 富阳市| 花莲县| 津市市| 新民市| 华蓥市| 同江市| 正宁县| 磐安县| 太白县| 朔州市| 潍坊市| 盈江县| 彭州市|