shell 语句的循环
时间: 2023-10-31 21:18:33 浏览: 87
shell脚本编程之循环语句
5星 · 资源好评率100%
shell脚本中的循环可以使用多种方式实现,常见的有for循环和while循环。
1. for循环:for循环可以用来遍历一个列表或者执行一定次数的操作。语法如下:
```shell
for 变量 in 列表
do
命令
done
```
示例:
```shell
#!/bin/bash
fruits=("apple" "banana" "cherry")
for fruit in ${fruits[@]}
do
echo "I like $fruit"
done
```
2. while循环:while循环会根据给定的条件来重复执行一段代码块。语法如下:
```shell
while 条件
do
命令
done
```
示例:
```shell
#!/bin/bash
count=1
while [ $count -le 5 ]
do
echo "Count: $count"
count=$((count + 1))
done
```
以上是两种常见的循环方式,根据实际需求选择适合的循环结构来实现所需的功能。
阅读全文