shell裡面的test用法

2021-07-04 17:54:48 字數 1701 閱讀 3441

今天自己看linux下面的好多指令碼檔案,發現很多if語句,然後就是條件判斷。看的時候發現自己對那些條件都不是熟記於心,所以自己就去找了test用法,然後記錄到自己的部落格裡面!

關於某個檔名的『型別』偵測(存在與否),如 test -e filename

-e 該『檔名』是否存在?(常用)

-f 該『檔名』是否為檔案(file)?(常用)

-d 該『檔名』是否為目錄(directory)?(常用)

-b 該『檔名』是否為乙個 block device 裝置?

-c 該『檔名』是否為乙個 character device 裝置?

-s 該『檔名』是否為乙個 socket 檔案?

-p 該『檔名』是否為乙個 fifo (pipe) 檔案?

-l 該『檔名』是否為乙個鏈結檔?

關於檔案的許可權偵測,如 test -r filename

-r 偵測該檔名是否具有『可讀』的屬性?

-w 偵測該檔名是否具有『可寫』的屬性?

-x 偵測該檔名是否具有『可執行』的屬性?

-u 偵測該檔名是否具有『suid』的屬性?

-g 偵測該檔名是否具有『sgid』的屬性?

-k 偵測該檔名是否具有『sticky bit』的屬性?

-s 偵測該檔名是否為『非空白檔案』?

兩個檔案之間的比較,如: test file1 -nt file2

-nt (newer than)判斷 file1 是否比 file2 新

-ot (older than)判斷 file1 是否比 file2 舊

-ef 判斷 file2 與 file2 是否為同一檔案,可用在判斷 hard link 的判定上。主要意義在判定,兩個檔案是否均指向同乙個 inode 哩!

關於兩個整數之間的判定,例如 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)

判定字串的資料

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

多重條件判定,例如: 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

shell 裡面的計算

恢復內容開始 關於shell裡面的計算其實早在接觸linux的時候就已經接觸到了。每次在運用的時候卻是在網上到處找,所以覺得花點時間好好研究下。首先了解下常用的算數運算符號 加法 正號 減法 負號 乘法,除法,取餘 冪運算增加或者減少,可前置也可放在變數結尾 邏輯非 取反 邏輯與 and 邏輯或 o...

AWK裡面的NR NF用法

1.nf 支援記錄域個數,在記錄被讀之後再設定例1 root redhat wilsontest pwd tmp wilsontest root redhat wilsontest echo pwd awk f wilsontest 這裡取得的是當前目錄的最後乙個檔案的名字。再如 root redh...

jquery裡面的迴圈的用法

下面提一下jquery的each方法的幾種常用的用法 js var arr one two three four each arr,function 上面這個each輸出的結果分別為 one,two,three,four var arr1 1,4,3 4,6,6 7,20,9 each arr1,f...