16.Util you
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了16.Util you相关的知识,希望对你有一定的参考价值。
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
本文出自 “8159085” 博客,请务必保留此出处http://8169085.blog.51cto.com/8159085/1794141
以上是关于16.Util you的主要内容,如果未能解决你的问题,请参考以下文章
ubuntu16.04 yum报错:There are no enabled repos. Run “yum repolist all“ to see the repos you have.(代码片段
If you want something, go get it. Period.---献给《阿甘正传》、《当幸福来敲门》