学科分类
目录
Linux编程

util循环

until循环的格式如下:

until [ 表达式 ]
do
  …
done

until循环与while循环的格式基本相同,不同的是,until循环的条件为假时,才能继续执行循环中的命令。

案例10:使用until循环输出有限个数据。

 1  #!/bin/sh
 2  #until
 3  i=1
 4  until [ $i -gt 3 ] 
 5  do
 6    echo "the number is $i."
 7    i=`expr $i + 1`
 8  done
 9  exit 0

执行该脚本,输出的结果如下:

the number is 1.
the number is 2.
the number is 3.
点击此处
隐藏目录