美文网首页
shell之运算符

shell之运算符

作者: IT小池 | 来源:发表于2019-05-28 20:39 被阅读0次

    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
    

    相关文章

      网友评论

          本文标题:shell之运算符

          本文链接:https://www.haomeiwen.com/subject/qkyjtctx.html