美文网首页
shell中的(),(()),{},=,==,[],[[]],$

shell中的(),(()),{},=,==,[],[[]],$

作者: 伏牛山忍者 | 来源:发表于2019-01-05 12:06 被阅读3次

有时间要好好整理下

shell中的(),(()),{},=,==,[],[[]]几种语法用法 - 码农崛起 - CSDN博客

shell $() $(()) $[] ${} $[[]] 使用语法 - qq_38572383的博客 - CSDN博客

2.3.1 算数运算

1、用expr

格式 expr m + n 或$((m+n)) 注意expr运算符间要有空格

例如计算(2+3 )×4 的值

1 .分步计算

         S=`expr 2 + 3`

         expr $S \* 4       ##  *号需要转义

2.一步完成计算

         expr`expr 2 + 3 ` \* 4

         echo`expr \`expr 2 + 3\` \* 4`

2、用(())

((1+2))

(((2+3)*4))

count=1

((count++))

echo $count

但是要想取到运算结果,需要用$引用

a=$((1+2))

3、用$[]

a=$[1+2]

echo $a

相关文章

  • shell(六)

    Shell 函数 linux shell 可以用户定义函数,然后在shell脚本中可以随便调用。shell中函数的...

  • shell编程二

    目录 一、shell中的函数二、shell中的数组三、shell告警系统 一、shell中的函数 函数就是把一段代...

  • shell 语法

    shell 语法如何抒写一个shell脚本shell脚本运行shell中的特殊符号管道重定向shell中数学运算脚...

  • shell&python中的if else语句

    shell: Python: 注意: 1.shell中[ expression ]中的expression必须与[...

  • Android基础 Gradle脚本使用

    shell 中的参数怎么传递 shell中./gradlew collectSDK -Pflavor=gionee...

  • Shell 函数

    linux shell 可以用户定义函数,然后在shell脚本中可以随便调用。 shell中函数的定义格式如下: ...

  • Shell 函数

    linux shell 可以用户定义函数,然后在shell脚本中可以随便调用。 shell中函数的定义格式如下: ...

  • Shell 函数

    linux shell 可以用户定义函数,然后在shell脚本中可以随便调用。 shell中函数的定义格式如下: ...

  • Shell 函数

    linux shell 可以用户定义函数,然后在shell脚本中可以随便调用。shell中函数的定义格式如下: 说...

  • 13. Shell 函数

    函数定义 linux shell 可以用户定义函数,然后在shell脚本中可以随便调用。shell中函数的定义格式...

网友评论

      本文标题:shell中的(),(()),{},=,==,[],[[]],$

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