您好,登錄后才能下訂單哦!
測試特定的表達式是否成立,成立返回值為0,反之,非0
test 條件表達式
[ 條件表達式 ] ——內容與括號之間加空格
文件測試
[ 操作符 文件或者目錄 ]
常用的測試操作符
●-d:測試是否為目錄(Directory)
●-e:測試目錄或文件是否存在(Exist)
●-f:測試是否為文件(File)
●-r:測試當前用戶是否有權限讀取(Read)
●-w:測試當前用戶是否有權限寫入(Write)
●-x: 測試當前用戶是否有權限執行(Excute)
實例如下(新手務必自己動手敲一敲體驗理解):
[root@localhost ~]# ls -l shell/
總用量 16
-rw-r--r--. 1 root root 134 11月 25 19:59 demo.sh
-rwxr-xr-x. 1 root root 274 11月 25 18:58 state.sh
-rwxr-xr-x. 1 root root 208 11月 25 19:17 sujiaju.sh
-rwxr-xr-x. 1 root root 345 11月 25 19:11 welcome.sh
[root@localhost ~]# [ -d shell/ ] //第一種測試方法,對當前用戶有效,或者test -d shell/
[root@localhost ~]# echo $?
0
[root@localhost ~]# [ -d shell/state.sh ]
[root@localhost ~]# echo $?
1
[root@localhost ~]# test -d shell/ //第二種測試方法,對當前用戶有效
[root@localhost ~]# echo $?
0
[root@localhost ~]# test -d shell/welcome.sh
[root@localhost ~]# echo $?
1
[root@localhost ~]# test -x shell/welcome.sh
[root@localhost ~]# echo $?
0
[root@localhost ~]# test -x shell/demo.sh
[root@localhost ~]# echo $?
1
//上述過程可以使用&&一次執行
[root@localhost ~]# test -x shell/welcome.sh && echo "yes"
yes
[root@localhost ~]# echo $?
0
[root@localhost ~]# [ -d shell/state.sh ]&& echo "yes"
[root@localhost ~]# echo $?
1
test 命令也可以用于判斷文件之間的關系:
-ot——判斷A文件是否比B文件舊
[ 整數1 操作符 整數2]
■常用的測試操作符
●-eq:等于(Equal)
●-ne:不等于(Not Equal)
●-gt:大于(Greater Than)
●-lt: 小于(Lesser Than)
●-le: 小于或等于(Lesser or Equal)
●-ge:大于或等于(Greater or Equal)
參照實例:
[root@localhost shell]# [ 5 -gt 3 ]&&echo "yes"
yes
[root@localhost shell]# [ 5 -lt 3 ]&&echo "yes"
[root@localhost shell]#
●格式1
[ 字符串1 = 字符串2 ]
[ 字符串1 != 字符串2 ]
●格式2
[ -Z字符串]
■常用的測試操作符
●=:字符串內容相同
●!=:字符串內容不同,!號表示相反的意思
●-Z:字符串內容為空
[root@localhost shell]# [ hello = hello ]&&echo "yes"
yes
[root@localhost shell]# [ hello = hell ]&&echo "yes"
[root@localhost shell]# [ hello != hell ]&&echo "yes"
yes
[root@localhost shell]# [ -z ]&&echo "yes"
yes
[root@localhost shell]# [ -z hello ]&&echo "yes"
[root@localhost shell]#
? 格式1:[表達式1]操作符[表達式2]
? 格式2:命令1操作符命令2 ...
常用的測試操作符
? ●-a或&&:邏輯與,'而且”的意思
? ●-o或||: 邏輯或,“或者” 的意思
? ●!:邏輯否
實例參照上面的字符串測試實例即可。
if 條件測試操作
? then 命令序列
fi
if 條件測試操作
? then 命令序列1
? else 命令序列2
fi
if 條件測試操作1
? then 命令序列1
elif 條件測試操作2
? then 命令序列2
else
命令序列3
fi
case 變量值 in
模式1)
命令序列1
;;
模式2)
命令序列2
;;
*)
默認命令序列
esac
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。