第 13 章. 算术扩展

算术扩展为脚本中执行(整数)算术运算提供了一个强大的工具。 使用反引号双括号let将字符串转换为数值表达式相对简单。

变体

使用反引号的算术扩展(通常与expr结合使用)

z=`expr $z + 3`          # The 'expr' command performs the expansion.

使用双括号的算术扩展,以及使用let

在算术扩展中使用反引号反引号)已被双括号取代 --((...))并且$((...))-- 以及非常方便的let结构。

z=$(($z+3))
z=$((z+3))                                  #  Also correct.
                                            #  Within double parentheses,
                                            #+ parameter dereferencing
                                            #+ is optional.

# $((EXPRESSION)) is arithmetic expansion.  #  Not to be confused with
                                            #+ command substitution.



# You may also use operations within double parentheses without assignment.

  n=0
  echo "n = $n"                             # n = 0

  (( n += 1 ))                              # Increment.
# (( $n += 1 )) is incorrect!
  echo "n = $n"                             # n = 1


let z=z+3
let "z += 3"  #  Quotes permit the use of spaces in variable assignment.
              #  The 'let' operator actually performs arithmetic evaluation,
              #+ rather than expansion.

脚本中算术扩展的示例

  1. 示例 16-9

  2. 示例 11-15

  3. 示例 27-1

  4. 示例 27-11

  5. 示例 A-16