码迷,mamicode.com
首页 > 其他好文 > 详细

let 命令

时间:2019-05-18 15:55:38      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:expect   nta   需要   除了   style   rand   严格   bsp   符号   

let命令取代并扩展了expr命令的整数算数符号。

let除了支持5中基础的运算符。

还支持+=,-=,*=,、-,%= 自变运算符。

以及**幂次运算符。

在变量计算中不需要加上$来表示变量。

[centos@s201 ~]$ let a=1+2
[centos@s201 ~]$ echo $a
3
[centos@s201 ~]$ let b=3-2
[centos@s201 ~]$ echo $B

[centos@s201 ~]$ echo $b
1

[centos@s201 ~]$ let c=8/6
[centos@s201 ~]$ echo $c
1

[centos@s201 ~]$ let c=8%6
[centos@s201 ~]$ echo $c
2

 

自加操作:let no++
自减操作:let no--
简写形式 let no+=10,let no-=20,分别等同于 let no=no+10,let no=no-20

 

 

对空格比较严格

[centos@s201 ~]$ let c= 8/6
-bash: let: c=: syntax error: operand expected (error token is "=")
[centos@s201 ~]$ let c = 8/6
-bash: let: =: syntax error: operand expected (error token is "=")

 

let 命令

标签:expect   nta   需要   除了   style   rand   严格   bsp   符号   

原文地址:https://www.cnblogs.com/wqbin/p/10885671.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!