shell脚本数组遍历
时间: 2023-11-20 20:56:34 浏览: 100
位置参数的遍历-shell教程ppt
以下是两种Shell脚本数组遍历的方法:
1.使用while循环遍历数组
```shell
i=0
while [ $i -lt ${#array[@]} ]
do
echo ${array[$i]}
let i++
done
```
2.使用for循环遍历数组
```shell
for(( i=0;i<${#array[@]};i++))
do
echo ${array[i]}
done
```
阅读全文