简单四则运算
算数运算:默认情况下,shell就只能支持简单的整数运算
运算内容:加(+)、减(-)、乘(*)、除(/)、取余(%)
1.四则运算符号
表达式 | 举例 |
---|---|
$(()) | echo $((1+1)) |
$[] | echo $[10-5] |
expr | exper 10/5 |
let | n=1,let n+=1 等价于 let n=n+1 |
1.$(()) 和 $[]
[root@shell test]# echo $((1+1))
2
[root@shell test]# echo $[1+1]
2
[root@shell test]# echo $((5-2))
3
[root@shell test]# echo $[5-2]
3
[root@shell test]# echo $((5*2))
10
[root@shell test]# echo $[5*2]
10
[root@shell test]# echo $((6/2))
3
[root@shell test]# echo $[6/2]
3
[root@shell test]# echo $((5%2))
1
[root@shell test]# echo $[5%2]
1
[root@shell test]# echo $((2**7))
128
[root@shell test]# echo $[2**7]
128
2.expr
[root@shell test]# expr 1+1 需要加空格
1+1
[root@shell test]# expr 1 + 1
2
[root@shell test]# expr 2 - 1
1
[root@shell test]# expr 2 \* 5 *号是特殊字符,需要转义
10
[root@shell test]# expr 20 / 5
4
[root@shell test]# expr 5 % 3
2
3.let
[root@shell test]# n=1;let n=n+1;echo $n
2
[root@shell test]# let n+=2
[root@shell test]# echo $n
4
[root@shell test]# let n-=2
[root@shell test]# echo $n
2
[root@shell test]# let n*=2
[root@shell test]# echo $n
4
[root@shell test]# let n=n*3
[root@shell test]# echo $n
12
[root@shell test]# let n/=3
[root@shell test]# echo $n
4
[root@shell test]# let n=n/2
[root@shell test]# echo $n
2
[root@shell test]# let n=n**7 求次幂
[root@shell test]# echo $n
128