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

Linux Gvim shell until需弩换

时间:2016-06-09 11:04:33      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

#until循环:执行一系列command直到条件为true时停止,一般while循环优先与until循环,极少数until更加有用
#格式如下:
#until expression
#do
#    Statment to be executed until expression is true
#done
#例:使用until输出0-9数字

1 number=0
2 until [ ! $number -lt 10 ]
3 do
4     echo " ${number} "
5     number=` expr ${number} + 1 `
6 done

 

Linux Gvim shell until需弩换

标签:

原文地址:http://www.cnblogs.com/blog4matto/p/5572042.html

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