Shell中的while和until循环

2025-05-25 03:02:37

Shell中不仅有for循环,还有while和until循环。

工具/原料

CentOS 7.2

while循环

1、while循环用于不断执行一系列命令,也用于从输入文件中读取数据;命令通常为测试条件。其格式为:while commanddo Statement(s) to be executed if command is truedone命令执行完毕,控制返回循环顶部,从头开始直至测试条件为假。

Shell中的while和until循环

3、while循环可用于读取键盘信息。下面的例子中,输入信息被设置为变量FILM,按<Ctrl-D>结束循环。echo 'type <CTRL-D> to terminate'echo -n 'enter your most liked film: 'while read FILMdo echo "Yeah! great film the $FILM"done

Shell中的while和until循环

2、例如,使用 until 命令输出 0 ~ 9 的数字:#!/bin/basha=0until [ ! $a -lt 10 ]do echo $a a=`expr $a + 1`done

Shell中的while和until循环
声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢