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

while DEMO

时间:2016-06-19 18:23:19      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

while DEMO

#!/bin/bash
#author:xiluhua
#since:20160619
let v_count=0
while [ "1" = "1" ]
do
    if [ $v_count -lt 5 ]
    then
        sleep 1
        echo $v_count
        let v_count=$v_count+1
    else
        echo "exit"
        break
    fi
done

 

while DEMO

标签:

原文地址:http://www.cnblogs.com/xiluhua/p/5598414.html

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