shell脚本while命令
时间: 2024-01-05 07:19:21 浏览: 72
shell脚本中的while命令用于重复执行一组命令,直到指定的条件不再满足为止。while命令的基本格式如下:
```shell
while [ condition ]
do
command1
command2
...
done
```
其中,`condition`是一个测试条件,如果测试结果为真,则执行`do`和`done`之间的命令。当`condition`测试结果为假时,循环结束。
以下是一个简单的示例,演示了如何使用while命令输出数字1到5:
```shell
#!/bin/bash
count=1
while [ $count -le 5 ]
do
echo $count
count=$((count+1))
done
```
输出结果为:
```
1
2
3
4
5
```
阅读全文