1. 關於某個文件名的『類型』偵測(存在與否),如 test -e filename
-e 該『文件名』是否存在?(經常使用)
-f 該『文件名』是否爲文件(file)?(經常使用)
-d 該『文件名』是否爲目錄(directory)?(經常使用)
-b 該『文件名』是否爲一個 block device 裝置?
-c 該『文件名』是否爲一個 character device 裝置?
-S 該『文件名』是否爲一個 Socket 文件?
-p 該『文件名』是否爲一個 FIFO (pipe) 文件?
-L 該『文件名』是否爲一個連結檔?
2. 關於文件的權限偵測,如 test -r filename
-r 偵測該文件名是否具備『可讀』的屬性?
-w 偵測該文件名是否具備『可寫』的屬性?
-x 偵測該文件名是否具備『可執行』的屬性?
-u 偵測該文件名是否具備『SUID』的屬性?
-g 偵測該文件名是否具備『SGID』的屬性?
-k 偵測該文件名是否具備『Sticky bit』的屬性?
-s 偵測該文件名是否爲『非空白文件』?
3. 兩個文件之間的比較,如:
test file1 -nt file2
-nt (newer than)判斷 file1 是否比 file2 新
-ot (older than)判斷 file1 是否比 file2 舊
-ef 判斷 file2 與 file2 是否爲同一文件,可用在判斷 hard link 的斷定上。 主要意義在斷定,兩個文件是否均指向同一個 inode 哩!
4. 關於兩個整數之間的斷定,例如
test n1 -eq n2
-eq 兩數值相等
(equal)
-ne 兩數值不等
(not equal)
-gt n1 大於
n2 (greater than)
-lt n1 小於
n2 (less than)
-ge n1 大於等於
n2 (greater than or equal)
-le n1 小於等於 n2 (less than or equal)
5. 斷定字符串的數據
test -z string 斷定字符串是否爲 0 ?若 string 爲空字符串,則爲
true
test -n string 斷定字符串是否非爲 0 ?若 string 爲空字符串,則爲 false。
注: -n 亦可省略
test str1 = str2 斷定 str1 是否等於 str2 ,若相等,則回傳
true
test str1 != str2 斷定 str1 是否不等於 str2 ,若相等,則回傳 false
6. 多重條件斷定,例如:
test -r filename -a -x filename
-a (and)兩情況同時成立!例如 test -r file -a -x file,則 file 同時具備 r 與 x 權限時,纔回傳 true。
-o (or)兩情況任何一個成立!例如 test -r file -o -x file,則 file 具備 r 或 x 權限時,就可回傳 true。
! 反相狀態,如 test ! -x file ,當 file 不具備 x 時,回傳 true