Shell中整数自增的几种方式

Posted zhouyuqiang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell中整数自增的几种方式相关的知识,希望对你有一定的参考价值。

Shell中整数自增的几种方式

 版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/Jerry_1126/article/details/52336340

在Shell脚本中,用于while或for循环中经常要涉及到整数自增的情况,下面罗列下可能的方式

【方式一】declare -i来声明整数变量

 

[email protected]:~# declare -i x=1
[email protected]:~# x+=1
[email protected]:~# echo $x
2
【方式二】使用let命令

 

 

[email protected]:~# i=1
[email protected]:~# let i+=1
[email protected]:~# echo $i
2
[email protected]:~# i=1
[email protected]:~# let i=$i+1
[email protected]:~# echo $i
2
[email protected]:~# i=1
[email protected]:~# let i++
[email protected]:~# echo $i
2
[email protected]:~# i=1
[email protected]:~# let ++i
[email protected]:~# echo $i
2
【方式三】使用(())

 

 

[email protected]:~# i=1
[email protected]:~# ((++i))
[email protected]:~# echo $i
2
[email protected]:~# i=1
[email protected]:~# ((i++))
[email protected]:~# echo $i
2
【方式四】使用expr命令

 

 

[email protected]:~# i=1
[email protected]:~# i=`expr $i + 1`
[email protected]:~# echo $i
2
[email protected]:~# i=1
[email protected]:~# i=$(expr $i + 1)
[email protected]:~# echo $i
2
【方式五】使用$(())
[email protected]:~# i=1
[email protected]:~# i=$(($i + 1))
[email protected]:~# echo $i
2
【方式六】使用$[]
[email protected]:~# i=1
[email protected]:~# i=$[$i + 1]
[email protected]:~# echo $i
2
备注:

1)使用i=$(expr $i + 1)比i=`expr $i + 1`要好些

2)使用(())或者$(())速度要比expr快

3)如果不考虑速度问题,涉及到不同平台的兼容,最好使用expr

4)Bash(sh)上使用比较多的情形:let,expr,(())

以上是关于Shell中整数自增的几种方式的主要内容,如果未能解决你的问题,请参考以下文章

shell编程学习笔记--整数自增

shell脚本里的变量怎么加1?(变量加法)

bat中for循环,实现变量自增的2种方式,附源码下载地址

bat中for循环,实现变量自增的2种方式,附源码下载地址

SQLite获取插入 ID 的几种方式

Linux Shell 变量自加