shell脚本while循环
时间: 2023-04-28 18:05:28 浏览: 83
Bash Shell 中的while 循环、 do…while
while循环是 shell 脚本中常用的循环结构之一。它重复执行一组命令直到条件为 false。语法格式如下:
```
while [ condition ]
do
command1
command2
...
done
```
其中condition是条件表达式,如果条件为 true,则执行循环体中的命令,如果条件为 false,则退出循环。
示例:
```
i=1
while [ $i -le 5 ]
do
echo $i
i=$((i+1))
done
```
输出:1 2 3 4 5
需要注意的是,while循环中的条件表达式需要用中括号括起来。
阅读全文