Shell until循环
Posted 疯狂的tiger
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell until循环相关的知识,希望对你有一定的参考价值。
until 循环执行一系列命令直至条件为 true 时停止。until 循环与 while 循环在处理方式上刚好相反。一般while循环优于until循环,但在某些时候,也只是极少数情况下,until 循环更加有用。
until 循环格式为:
until command do Statement(s) to be executed until command is true done
command 一般为条件表达式,如果返回值为 false,则继续执行循环体内的语句,否则跳出循环。
例如,使用 until 命令输出 0 ~ 9 的数字:
- #!/bin/bash
- a=0
- until [ ! $a -lt 10 ]
- do
- echo $a
- a=`expr $a + 1`
- done
运行结果:
0 1 2 3 4 5 6 7 8 9
以上是关于Shell until循环的主要内容,如果未能解决你的问题,请参考以下文章
Shell编程Shell中for循环while循环until循环语句
Shell编程Shell中for循环while循环until循环语句