/

如何在Bash中循環遍歷數組

如何在Bash中循環遍歷數組

了解如何在Bash中循環遍歷數組

我有一個包含3個字符串的數組:

1
list=( "first" "second" "third" )

我想在Bash Shell腳本中對它們進行循環遍歷。

下面是我的實現方式:

1
2
3
4
5
for i in "${list[@]}"
do
:
echo $i
done

tags: [“bash”, “loop”, “array”]