网站首页 美食营养 游戏数码 手工爱好 生活家居 健康养生 运动户外 职场理财 情感交际 母婴教育 时尚美容

Shell中的while和until循环

时间:2024-10-12 07:00:57

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循环
© 2025 小知经验
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com