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

Posted 小灰奇

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell编程学习笔记--整数自增相关的知识,希望对你有一定的参考价值。

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

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

  1. [email protected]:~# declare -i x=1  
  2. [email protected]:~# x+=1  
  3. [email protected]:~# echo $x  
  4. 2  

方式二使用let命令

  1. [email protected]:~# i=1  
  2. [email protected]:~# let i+=1  
  3. [email protected]:~# echo $i  
  4. 2  
  5. [email protected]:~# i=1  
  6. [email protected]:~# let i=$i+1  
  7. [email protected]:~# echo $i  
  8. 2  
  9. [email protected]:~# i=1  
  10. [email protected]:~# let i++  
  11. [email protected]:~# echo $i  
  12. 2  
  13. [email protected]:~# i=1  
  14. [email protected]:~# let ++i  
  15. [email protected]:~# echo $i  
  16. 2  

方式三使用(())

  1. [email protected]:~# i=1  
  2. [email protected]:~# ((++i))  
  3. [email protected]:~# echo $i  
  4. 2  
  5. [email protected]:~# i=1  
  6. [email protected]:~# ((i++))  
  7. [email protected]:~# echo $i  
  8. 2  

方式四使用expr命令

  1. [email protected]:~# i=1  
  2. [email protected]:~# i=`expr $i + 1`  
  3. [email protected]:~# echo $i  
  4. 2  
  5. [email protected]:~# i=1  
  6. [email protected]:~# i=$(expr $i + 1)  
  7. [email protected]:~# echo $i  
  8. 2  

方式五使用$(())

  1. [email protected]:~# i=1  
  2. [email protected]:~# i=$(($i + 1))  
  3. [email protected]:~# echo $i  
  4. 2  

方式六使用$[]

  1. [email protected]:~# i=1  
  2. [email protected]:~# i=$[$i + 1]  
  3. [email protected]:~# echo $i  
  4. 2  

备注:

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

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

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

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


本文为网络搜集,如有侵权,请告知!!!

以上是关于shell编程学习笔记--整数自增的主要内容,如果未能解决你的问题,请参考以下文章

学习笔记-5.3 shell编程2

shell脚本编程学习笔记-shell脚本编程基础介绍

shell脚本编程学习笔记

shell脚本编程学习笔记shell操作数据库

Linux学习笔记之shell编程基础

Linux shell 编程学习笔记--第一章