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

shell编程(十三) --- while循环

时间:2014-07-16 16:42:00      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:while循环

while循环适用于循环次数未知的场景。

语法格式:
while CONDITION
do
    statement
    ……
done
说明:while是当CONDITION成立的时候就执行循环,当条件不成立时,退出循环。


示例1:计算从1加到100.

[root@Server3 Learn]# cat while1.sh 
#!/bin/bash
declare -i sum=0
declare -i i=0
while [ $i -le 100 ]
do
     let sum+=$i
     let i+=1
done

echo $sum
[root@Server3 Learn]# chmod +x while1.sh 
[root@Server3 Learn]# ./while1.sh 
5050
[root@Server3 Learn]#



本文出自 “HeZhang” 博客,请务必保留此出处http://hezhang.blog.51cto.com/1347601/1438879

shell编程(十三) --- while循环,布布扣,bubuko.com

shell编程(十三) --- while循环

标签:while循环

原文地址:http://hezhang.blog.51cto.com/1347601/1438879

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