1. 程式人生 > >Shell 數值運算與運算子

Shell 數值運算與運算子

declare宣告變數型別
這裡寫圖片描述
數值運算
方法一:

[root@localhost ~]# a=1
[root@localhost ~]# b=2
[root@localhost ~]# declare -i c=$a+$b

方法二:

[root@localhost ~]# a=1
[root@localhost ~]# b=2
[root@localhost ~]# c=$(expr $a + $b)
#注意“+”號兩側必須有空格

方法三:

[root@localhost ~]# a=1
[root@localhost ~]# b=2
[root@localhost
~]# c=$(( $a + $b )) #或者使用[],推薦使用(()) [root@localhost ~]# c=$[ $a + $b ]