test命令用法。功能 檢查檔案和比較值

2021-05-25 00:57:16 字數 2438 閱讀 4171

test命令用法。功能:檢查檔案和比較值

1)判斷表示式 

if test  (表示式為真)

if test !表示式為假

test 表示式1 –a 表示式2                  兩個表示式都為真

test 表示式1 –o 表示式2                 兩個表示式有乙個為真

2)判斷字串

test –n 字串                                   字串的長度非零

test –z 字串                                    字串的長度為零

test 字串1=字串2                    字串相等

test 字串1!=字串2               字串不等

3)判斷整數

test 整數1 –eq 整數2                        整數相等

test 整數1 –ge 整數2                        整數1大於等於整數2

test 整數1 –gt 整數2                         整數1大於整數2

test 整數1 –le 整數2                         整數1小於等於整數2

test 整數1 –lt 整數2                          整數1小於整數2

test 整數1 –ne 整數2                        整數1不等於整數2

4)判斷檔案

test  file1 –ef  file2                            兩個檔案具有同樣的裝置號和i結點號

test  file1 –nt  file2                            檔案1比檔案2 新

test  file1 –ot  file2                            檔案1比檔案2 舊

test –b file                                           檔案存在並且是塊裝置檔案

test –c file                                           檔案存在並且是字元裝置檔案

test –d file                                           檔案存在並且是目錄

test –e file                                           檔案存在

test –f file                                            檔案存在並且是正規檔案

test –g file                                           檔案存在並且是設定了組id

test –g file                                           檔案存在並且屬於有效組id

test –h file                                           檔案存在並且是乙個符號鏈結(同-l)

test –k file                                           檔案存在並且設定了sticky位

test –b file                                           檔案存在並且是塊裝置檔案

test –l file                                           檔案存在並且是乙個符號鏈結(同-h)

test –o file                                           檔案存在並且屬於有效使用者id

test –p file                                           檔案存在並且是乙個命名管道

test –r file                                            檔案存在並且可讀

test –s file                                           檔案存在並且是乙個套接字

test –t fd                                             檔案描述符是在乙個終端開啟的

test –u file                                           檔案存在並且設定了它的set-user-id位

test –w file                                          檔案存在並且可寫

test –x file                                           檔案存在並且可執行

test命令用法。功能 檢查檔案和比較值

test命令用法。功能 檢查檔案和比較值 1 判斷表示式 iftest 表示式為真 iftest 表示式為假 test表示式1 a表示式2兩個表示式都為真 test表示式1 o表示式2兩個表示式有乙個為真 2 判斷字串 test n字串字串的長度非零 test z字串字串的長度為零 test字串1 ...

test命令的功能

當我們檢查檔案是否存在,或者檢查檔案的屬性時,可以使用test命令。例如檢測 abc是否存在,可以用 test e abc echo exist echo not exist test後面可跟的引數比較多,我們可以用man命令來檢視各個引數的功能。下面實現,使用者輸入乙個檔名,我們判斷 這個檔案是否...

test命令的用法

1 字串比較 string1 string 2 如果兩個字串相同,則結果為真 string1 string2 如果兩個字串不相同,則結果為真 n string 如果字串不為空,則結果為真 z string 如果字串為null,則結果為真 sample bin sh sa hello sb hello...