Shell-算术运算规则

#!/bin/bash

#数值计算的方式
a=1
a=$(($a+1))
a=$[$a+1]
a=`expr $a + 1`
let a++
let a+=1

((a++))

echo $a


你可能感兴趣的:(Shell-算术运算规则)