001、
[root@PC1 test03]# a=100 [root@PC1 test03]# echo $a 100 [root@PC1 test03]# echo $a+500 100+500 [root@PC1 test03]# echo $[a+500] ## 中括号可以实现变量运算 600 [root@PC1 test03]# echo $a*3 100*3 [root@PC1 test03]# echo $[a*3] 300 [root@PC1 test03]# b=$[a*500] ## 变量赋值 [root@PC1 test03]# echo $b 50000
标签:shell,运算,PC1,echo,中括号,test03,100,root,500 From: https://www.cnblogs.com/liujiaxin2018/p/17475075.html