Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 662 Bytes

shell运算符.md

File metadata and controls

39 lines (32 loc) · 662 Bytes

一、基本语法

  1. $((运算式))$[运算式]

  2. expr + , - , \* , / , % ---> 加, 减, 乘 除, 取余

    注意: expr 运算法间要有空格

示例

① 计算 3+2 的值

[root@hadoop1 shell]# expr 3+2
3+2
[root@hadoop1 shell]# expr 3 + 2
5

② 计算 3-2 的值

[root@hadoop1 shell]# expr 3-2
3-2
[root@hadoop1 shell]# expr 3 - 2
1

③ 计算 (2+3)*4 的值

[root@hadoop1 shell]# expr `expr 2 + 3` \* 4
20

④ 采用 $[运算式]方式

[root@hadoop1 shell]# echo $[(2+3)*4]
20