Linux 的 test 指令是 Shell 內建指令,用來偵測某個條件是否成立。 test 常與 if 語句一起使用,大多數 if 語句都依賴 test。它可以將一個元素與另一個元素進行比較,但更常用於 BASH shell 腳本中,作為控制邏輯和程式流程的條件語句的一部分。
test 指令有許多選項,可以進行數值、字串和檔案三方面的偵測。
#在終端機視窗中嘗試這些命令。
linuxmi@linuxmi /home/linuxmi/www.linuxmi.com ⚡ test 1 -eq 2 && echo "yes" || echo "no" no linuxmi@linuxmi /home/linuxmi/www.linuxmi.com ⚡ test 1 -eq 1 && echo "yes" || echo "no" yes
上面的指令分解如下:
#小貼士:從shell 提示字元運行,test*不會將值傳回標準輸出,它只會傳回退出狀態代碼。這就是為什麼需要連結 echo 命令的原因。 *
本質上一樣的,該指令將1 與2 進行比較,如果它們匹配,則執行echo“yes”語句並顯示“yes”,如果它們不匹配,則執行echo“no”語句,顯示“no”。
如果要比較解析為數字的元素,可以使用以下比較運算子:
test 1 -eq 2 && echo "yes" || echo "no"
(在螢幕上顯示“no”,因為 1 不等於 2)
test 1 -ge 2 && echo "yes" || echo "no"
(在螢幕上顯示“no”,因為 1 不大於或等於 2)
test 1 -gt 2 && echo "yes" || echo "no"
(在螢幕上顯示“no”,因為 1 不大於 2)
test 1 -le 2 && echo "yes" || echo "no"
(在螢幕上顯示“yes”,因為 1 小於或等於 2)
test 1 -lt 2 && echo "yes" || echo "no"
(在螢幕上顯示“yes”,因為 1 小於或等於 2)
test 1 -ne 2 && echo "yes" || echo "no"
(在屏幕上显示“yes”,因为 1 不等于 2)
比较解析为字符串的元素时,请使用以下比较运算符:
例子
test "string1" = "string2" && echo "yes" || echo "no"
(在屏幕上显示“no”,因为“string1”不等于“string2”)
test "string1" != "string2" && echo "yes" || echo "no"
(在屏幕上显示“yes”,因为“string1”不等于“string2”)
test -n "string1" && echo "yes" || echo "no"
(在屏幕上显示“yes”,因为“string1”的字符串长度大于零)
test -z "string1" && echo "yes" || echo "no"
(在屏幕上显示“no”,因为“string1”的字符串长度大于零)
比较文件时,请使用以下比较运算符:
例子
⚡ test linuxmi -nt linux && echo "yes"
(如果 linuxmi 比 linux 新,则显示“yes”字样,如上图
⚡ test -e /home/linuxmi/linuxmi && echo "yes"
(如果 linuxmi 存在,将显示“yes”)
test -O /home/linuxmi/linuxmi && echo "yes"
(如果您拥有 file1,则显示“yes”字样”)
块特殊:文件是块设备,这意味着数据以字节块的形式读取。这些通常是设备文件,例如硬盘驱动器。
特殊字符:文件在您写入时立即执行,通常是串行端口等设备
到目前为止,一切都在将一件事与另一件事进行比较,但是如果您想比较两个条件怎么办?
例如,如果一只动物有四条腿并且会发出“哞哞”的声音,它可能是一头奶牛。简单地检查四只腿并不能保证你有一头牛,但检查它发出的声音肯定可以。
要同时测试这两个条件,请使用以下语句:
test 4 -eq 4 -a "moo" = "moo" && echo "it is a cow" || echo "it is not a cow"
这里的关键部分是-a标志,它代表and。
有一种更好和更常用的方法来执行相同的测试,如下所示:
test 4 -eq 4 && test "moo" = "moo" && echo "it is a cow" || echo "it is not a cow"
test 命令的分支很重要。如果第一个测试 (4 = 4) 失败,则 *test* 命令以非零退出代码终止。因此,我们跳转到双管道符号并且“it is not a cow”打印到标准输出。但是,如果第一个测试成功并因此 test 导致退出代码0,那么我们跳转到第一个双与号(&&)。下一条语句是另一个测试条件!
如果第二次 test 失败,我们再次跳到双管并从那里继续。然而,如果第二个 test 成功,我们跳转到第二个双& 语句,在这个例子中,它只是将“it is a cow”回显到标准输出,然后终止返回到 shell 提示符。
另一个测试比较两个语句,如果其中一个为真,则输出一个字符串。例如,要检查是否存在名为“linuxmi.txt”的文件或名为“linuxmi.py”的文件,可以使用以下命令:
这里的关键部分是**-o**代表or。
test -e linuxmi.txt -o -e linuxmi.py && echo "linuxmi exists" || echo "linuxmi does not exist"
有一种更好和更常用的方法来执行相同的测试,如下所示:
test -e linuxmi.txt || test -e linuxmi.py && echo "linuxmi exists" || echo "linuxmi does not exist"
您实际上不需要使用单词test来执行比较。您所要做的就是将语句括在方括号中,如下所示:
⚡ [ -e linux.py ] && echo "linux.py exists" || echo "file1 does not exist"linux.py exists
[and**]基本上与****test含义 相同。**
现在您知道这一点,您可以改进比较多个条件,如下所示:
[ 4 -eq 4 ] && [ "moo" = "moo" ] && echo "it is a cow" || echo "it is not a cow" [ -e linuxmi.py ] || [ -e linuxmi.txt ] && echo "linuxmi exists" || echo "linuxmi does not exist"
test 命令在脚本中更有用,因为您可以对照另一个变量测试一个变量的值并控制程序流程。在命令行上,使用它来测试文件是否存在。
以上是如何在 Bash 腳本中使用強大的 Linux test 指令的詳細內容。更多資訊請關注PHP中文網其他相關文章!