Linux Gvim shell until需弩换
Posted Blog4Matto
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux Gvim shell until需弩换相关的知识,希望对你有一定的参考价值。
#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需弩换的主要内容,如果未能解决你的问题,请参考以下文章