Shell中的 test 命令用于檢查某個條件是否成立,它可以進行數(shù)值、字符和文件三個方面的測試。
數(shù)值測試
參數(shù) |
說明 |
-eq |
等于則為真 |
-ne |
不等于則為真 |
-gt |
大于則為真 |
-ge |
大于等于則為真 |
-lt |
小于則為真 |
-le |
小于等于則為真 |
例如:
復制代碼 代碼如下:
num1=100
num2=100
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!
字符串測試
參數(shù) |
說明 |
= |
等于則為真 |
!= |
不相等則為真 |
-z 字符串 |
字符串長度偽則為真 |
-n 字符串 |
字符串長度不偽則為真 |
例如:
復制代碼 代碼如下:
num1=100
num2=100
if test num1=num2
then
echo 'The two strings are equal!'
else
echo 'The two strings are not equal!'
fi
輸出:
The two strings are equal!
文件測試
參數(shù) |
說明 |
-e 文件名 |
如果文件存在則為真 |
-r 文件名 |
如果文件存在且可讀則為真 |
-w 文件名 |
如果文件存在且可寫則為真 |
-x 文件名 |
如果文件存在且可執(zhí)行則為真 |
-s 文件名 |
如果文件存在且至少有一個字符則為真 |
-d 文件名 |
如果文件存在且為目錄則為真 |
-f 文件名 |
如果文件存在且為普通文件則為真 |
-c 文件名 |
如果文件存在且為字符型特殊文件則為真 |
-b 文件名 |
如果文件存在且為塊特殊文件則為真 |
例如:
復制代碼 代碼如下:
cd /bin
if test -e ./bash
then
echo 'The file already exists!'
else
echo 'The file does not exists!'
fi
輸出:
The file already exists!
另外,Shell還提供了與( ! )、或( -o )、非( -a )三個邏輯操作符用于將測試條件連接起來,其優(yōu)先級為:“!”最高,“-a”次之,“-o”最低。例如:
復制代碼 代碼如下:
cd /bin
if test -e ./notFile -o ./bash
then
echo 'One file exists at least!'
else
echo 'Both dose not exists!'
fi
輸出:
One file exists at least!
您可能感興趣的文章:- hbase shell基礎和常用命令詳解
- linux shell命令行選項與參數(shù)用法詳解
- Shell腳本中實現(xiàn)切換用戶并執(zhí)行命令操作
- linux shell腳本學習xargs命令使用詳解
- 在Shell命令行處理JSON數(shù)據(jù)的方法
- Shell日志分析常用命令和例子
- 25個好用的Shell腳本常用命令分享
- Shell 命令執(zhí)行順序分析[圖]
- 用shell命令讀取與輸出數(shù)據(jù)的代碼
- 提高你工作效率的shell命令總結大全