shell中的运算符

Shell file中:

1) 常用运算符号:

++ Increment by one (prefix and postfix)

— Decrement by one (prefix and postfix)

+ Plus

- Minus

* Multiplication

/ Division (with truncation)

% Remainder

** Exponentiation[10]

<< Bit-shift left

>> Bit-shift right

& Bitwise and

| Bitwise or

~ Bitwise not

! Logical not

^ Bitwise exclusive or

, Sequential evaluation

2) 字符串比较:

<                     Less than

>                     Greater than

<=                    Less than or equal to

>=                    Greater than or equal to

==                    Equal to

!=                    Not equal to

&&                    Logical and

||                    Logical or

3) 整数比较:

-lt               Less than

-gt               Greater than

-le               Less than or equal to

-ge               Greater than or equal to

-eq               Equal to

-ne              Not equal to



整数比较


-eq       等于,如:if [ "$a" -eq "$b" ]

-ne       不等于,如:if [ "$a" -ne "$b" ]

-gt       大于,如:if [ "$a" -gt "$b" ]

-ge       大于等于,如:if [ "$a" -ge "$b" ]

-lt       小于,如:if [ "$a" -lt "$b" ]

-le       小于等于,如:if [ "$a" -le "$b" ]

<       小于(需要双括号),如:(("$a" < "$b"))

<=       小于等于(需要双括号),如:(("$a" <= "$b"))

>       大于(需要双括号),如:(("$a" > "$b"))

>=       大于等于(需要双括号),如:(("$a" >= "$b"))


字符串比较

=       等于,如:if [ "$a" = "$b" ]

==       等于,如:if [ "$a" == "$b" ],与=等价

      注意:==的功能在[[]]和[]中的行为是不同的,如下:

      1 [[ $a == z* ]]    # 如果$a以"z"开头(模式匹配)那么将为true

      2 [[ $a == "z*" ]] # 如果$a等于z*(字符匹配),那么结果为true

      3

      4 [ $a == z* ]      # File globbing 和word splitting将会发生

      5 [ "$a" == "z*" ] # 如果$a等于z*(字符匹配),那么结果为true

      一点解释,关于File globbing是一种关于文件的速记法,比如"*.c"就是,再如~也是.

      但是file globbing并不是严格的正则表达式,虽然绝大多数情况下结构比较像.

!=       不等于,如:if [ "$a" != "$b" ]

      这个操作符将在[[]]结构中使用模式匹配.

<       小于,在ASCII字母顺序下.如:

      if [[ "$a" < "$b" ]]

      if [ "$a" \< "$b" ]

      注意:在[]结构中"<"需要被转义.

>       大于,在ASCII字母顺序下.如:

      if [[ "$a" > "$b" ]]

      if [ "$a" \> "$b" ]

      注意:在[]结构中">"需要被转义.

      具体参考Example 26-11来查看这个操作符应用的例子.

-z       字符串为"null".就是长度为0.

-n       字符串不为"null"

      注意:

      使用-n在[]结构中测试必须要用""把变量引起来.使用一个未被""的字符串来使用! -z

      或者就是未用""引用的字符串本身,放到[]结构中。虽然一般情况下可

      以工作,但这是不安全的.习惯于使用""来测试字符串是一种好习惯.


原文链接:http://hi.baidu.com/travelofsoul/item/ebc98fe7deaa293c87d9de4b