linux系统中expr命令1、linux系统中expr命令实现命令⾏中的四则运算
简单⽰例:
[root@linuxprobe test]# expr 5 + 3 ## 在命令⾏中实现加法运算
8
2、中间必须有空格
[root@linuxprobe test]# expr 5+3 ##中间必须有空格
5+3
[root@linuxprobe test]# expr 5 +3 ##同上
expr: syntax error: unexpected argument ‘+3’
[root@linuxprobe test]# expr 5+ 3 ## 同上
expr: syntax error: unexpected argument ‘3’
3、必须是整数运算
[root@linuxprobe test]# expr 5 + 3
8
[root@linuxprobe test]# expr 5.5 + 3 ## 必须是整数运算
expr: non-integer argument
4、减法运算
[root@linuxprobe test]# expr 10 - 4
6
[root@linuxprobe test]# expr 10 + 5 - 2
13
5、乘法运算
[root@linuxprobe test]# ls
[root@linuxprobe test]# expr 3 * 5 ## 当前⽬录为空时,*前可以不加转义
15
[root@linuxprobe test]#
[root@linuxprobe test]# ls
<
[root@linuxprobe test]# expr 3 * 5
expr: syntax error: unexpected argument ‘a.txt’
[root@linuxprobe test]# expr 3 \* 5 ## 加转义
15
6、除法、取余
[root@linuxprobe test]# expr 10 / 2
5
[root@linuxprobe test]# expr 10 / 3 ## 除法只保留整数
3
[root@linuxprobe test]# expr 10 % 3 ##取余数
1linux登录命令
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论