linux shell程式設計 二

2021-09-05 18:12:29 字數 613 閱讀 4303

條件選擇 if -then  語句

if command

then

commands

fi另一種形式

if command; then

commands

fi

關於退出狀態碼,你只需要記住:正常退出(命令執行正常)的狀態碼是0, 非正常退出的狀態碼不是0(有不少)。

以上語句的語義為: 如果if後面的命令執行正常(狀態碼0),那麼就執行then後面的語句。否則不執行。 fi代表if語句的結束

if ——then -else語句

if command

then

commands

else

commands

fi

2.test命令用於判斷條件是否成立  數值比較,,字元創比較,檔案比較

linux shell 程式設計(二)

linux shell程式設計test語法的使用 test命令用於檢查某個條件是否成立,它可以進行數值 字元和檔案三個方面的測試,其測試符和相應的功能分別如下 一 數值測試 eq 等於則為真 ne 不等於則為真 gt 大於則為真 ge 大於等於則為真 lt 小於則為真 le 小於等於則為真 二 字串...

Linux Shell 程式設計學習(二)

case多選結構 基本結構 case word in case 1 command 1 case 2 command 2 case 3 command 3 case n command n esac 乙個demo while 迴圈 while test commands do command sel...

linux shell 程式設計

bin bash comments your commands go here 首行中的符號 告訴系統其後路徑所指定的程式bash即是解釋此指令碼檔案的shell程式。除第一行外,以 開頭的行就是注釋行,直到此行的結束。如果一行未完成,可以在行尾加上 這個符號表明下一行與此行會合併為同一行。有環境變...