shell編程筆記一 條件測試

來源:互聯網
上載者:User
一  條件測試
對檔案、字串和數字使用test命令
對數字和字串使用expr命令
expr命令測試和執行數值輸出

1 測試檔案狀態
test一般有兩種格式,即:
test condition
[ conditon ]
-d 目錄
-f 正規檔案
-L 符號串連
-r 可讀
-s 檔案長度大於0,非空
-w 可寫
-u 檔案有suid位設定
-x 可執行
使用兩種方法測試scores.txt是否可寫並用最後退出狀態測試是否成功
$ [-w scores.txt]
$ echo $?
0

$ test -w scores.txt
$ echo $?
0
兩種狀態均返回0,可知檔案scores.txt可寫

2 測試時使用邏輯操作符
-a 邏輯與
-o 邏輯或
! 邏輯否

測試兩個檔案是否均可讀
[-w file1.txt -a -w file2.txt]
echo $?

3 字串測試
字串測試有5種格式
test "string"
test string_operator "string"
test "string" string_operator "string"
[string_operator string]
[string string_operator string]
這裡,string_operator可為:
=
!=
-z 空串
-n 非空串
測試環境變數EDITOR是否為空白
$[-z $EDITOR]
$echo $?
1
非空,取值是否為vi?
$[$EDITOR="vi"]
$echo $?
0

4 測試數值
"number" numeric_operator "number"
numeric_operator可為:
-eq 數值相等
-ne 數值不等
-gt 第一個數大於第二個數
-lt 第一個數小於第二個數
-le 第一個數大於等於第二個數
-ge 第一個數大於等於第二個數

$[“990” -le "995" -a "123" -gt "33"]
$ echo $?
0

5 expr用法
expr命令一般用於整數值,但也可用於字串
expr argument operator argument
expr也是一個手工命令列計數器
$ expr 10+10
20

$ expr 30/3
10

使用乘號時必須用\
$ expr 30\*3
90

增量計數
expr在迴圈中用於增量計算。首先,迴圈初始化為 0,然後迴圈值加 1,反引號的用法意即替代命令。最基本的一種是從( expr)命令接受輸出並將之放入迴圈變數。

$ LOOP=0
$ LOOP='expr $LOOP+1'

數值測試

相關文章

聯繫我們

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