shell脚本循环遍历数组
时间: 2023-10-08 21:13:52 浏览: 108
Shell脚本用for循环遍历参数的方法技巧
Shell脚本可以使用多种方式来循环遍历数组。
一种常见的方式是使用while循环,通过设置一个计数变量来遍历数组。代码如下所示:
```
i=0
while [ $i -lt ${#array[@]} ]
do
echo ${array[$i]}
let i++
done
```
这段代码中,我们使用变量`i`来表示数组的下标,当`i`小于数组长度时,进入循环体。在循环体中,通过`${array[$i]}`来获取数组的元素,并打印出来。
另一种常见的方式是使用for循环来遍历数组。代码如下所示:
```
for ((i=0; i<${#array[@}; i++))
do
echo ${array[i]}
done
```
在这段代码中,我们使用`$i`作为循环的计数变量,通过设置初始值为0、循环条件为`i<${#array[@]}`、每次循环后对`i`进行自增操作,来遍历数组。通过`${array[i]}`来获取数组的元素,并打印出来。
还有一种方式是使用`for ... in`语句来遍历数组。代码如下所示:
```
for i in "${!array[@]}"
do
echo ${array[$i]}
done
```
在这段代码中,`"${!array[@]}"`会生成数组的所有下标,然后使用`for ... in`循环遍历这些下标。在循环体中,通过`${array[$i]}`来获取数组的元素,并打印出来。
以上是三种常见的Shell脚本循环遍历数组的方式,你可以根据自己的需求选择其中一种方式来使用。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [Shell 数组遍历的3种方法](https://blog.csdn.net/lovedingd/article/details/126310157)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文