shell编程学习笔记--整数自增
Posted 小灰奇
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell编程学习笔记--整数自增相关的知识,希望对你有一定的参考价值。
在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编程学习笔记--整数自增的主要内容,如果未能解决你的问题,请参考以下文章