expr 或 let 数值运算工具
[root@localhost ~]# c=$(expr $a + $b)
注意:+号左右必须有空格
$((运算式)) 或 $[运算式] 数值运算工具
[root@localhost ~]# a=1
[root@localhost ~]# b=2
[root@localhost ~]# c=$(expr $a + $b)
[root@localhost ~]# echo $c
[root@localhost ~]# c=$(expr $a + $b)
注意:+号左右必须有空格
[root@localhost ~]# a=1
[root@localhost ~]# b=2
[root@localhost ~]# c=$(expr $a + $b)
[root@localhost ~]# echo $c
本文标题:shell之运算符
本文链接:https://www.haomeiwen.com/subject/qkyjtctx.html
网友评论