码迷,mamicode.com
首页 > 系统相关 > 详细

shell script 之六:循环 while

时间:2018-03-22 15:03:26      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:strong   语法   停止   ret   bash   数字   log   输入   tty   

while循环

基本语法:

while <条件>
do
    <命令>
done

while循环更多地用于读取标准输入的内容来实现循环

 

例1:依次打印数字

#!/bin/bash
#while test
#by sunny
i=10
while ((i<100));
do
sleep 1
  echo "the num is $i"
  ((i++))
  if [ $i -gt 15 ];then    # i超过15会停止循环跳出
    break
  fi
done

执行 sh while1.sh 
the num is 10
the num is 11
the num is 12
the num is 13
the num is 14
the num is 15

  



  

shell script 之六:循环 while

标签:strong   语法   停止   ret   bash   数字   log   输入   tty   

原文地址:https://www.cnblogs.com/sunny18/p/8623791.html

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