本文所選的例子來自於《Advanced Bash-scripting Gudie》一書,譯者 楊春敏 黃毅 -a 和 -o一般與[ ]使用,如:[ "$exp1" -a "$exp2" ] && 和 || 一般與[[ ]] 使用,如:[[ condition1 && condition2 ]] 以上 ...
本文所選的例子來自於《Advanced Bash-scripting Gudie》一書,譯者 楊春敏 黃毅
1 例1: 2 [ 1 -eq 1 ] && [ -n "`echo true 1>&2`" ] #true。1>&2表示將標準輸出輸出到文件描述符2(標準錯誤輸出:屏幕) 3 [ 2 -eq 2 ] && [ -n "`echo true 1>&2`" ] #(not output) 4 5 [ 1 -eq 2 -a -n "`echo true 1>&2`" ] #true,這是錯誤的結果,難道是因為單括弧數值計算中有兩個條件判斷嗎? 6 7 [[ 1 -eq 2 && -n "`echo true 1>&2`" ] #(not output),有些-a 或 -o 不正確的情況,顯然&&或||要穩妥些
-a 和 -o一般與[ ]使用,如:[ "$exp1" -a "$exp2" ]
&& 和 || 一般與[[ ]] 使用,如:[[ condition1 && condition2 ]]
1 例2 2 [ $a == z* ] #模式匹配:如果$a以a開頭,則為true 3 [ $a == "z*" ] #字元匹配:如果$a的值等於z*,則為true 4 5 [ $a = z* ] #file globbing and word splitting 將會發生,什麼意思? 6 [ $a = "z*" ] #字元匹配:如果$a的值等於z*,則為true
以上屬於字元串的比較,只不過==的功能在[[]]和[]中的行為是不同的。
1 例3 2 #只能用[[ ]] 可以進行進位轉換比較 3 4 decimal=15 #十進位 5 octial=017 #八進位 6 hex=0x0f #十六進位 7 if [ "$decimal" -eq "$octal" ] 8 then 9 echo "$decimal equals $octal" 10 else 11 echo "$decimal is not equal to $octal" # 15 is not equal to 017 12 fi
# 不能用單括弧[ ]計算! 13 if [[ "$decimal" -eq "$octal" ]] 14 then 15 echo "$decimal equals $octal" # 15 equals 017 16 else 17 echo "$decimal is not equal to $octal" 18 fi # 要用雙括弧[[ ]]計算! 19 if [[ "$decimal" -eq "$hex" ]] 20 then 21 echo "$decimal equals $hex" # 15 equals 0x0f 22 else 23 echo "$decimal is not equal to $hex" #[[ $hexadecimal ]]也能計算
24 fi