📌  相关文章
📜  循环遍历 Bash 中的字符串数组 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:46.531000             🧑  作者: Mango

代码示例1
## declare an array variable
declare -a arr=("element1" "element2" "element3")

## now loop through the above array
for i in "${arr[@]}"
do
   echo "$i"
   # or do whatever with individual element of the array
done

# You can access them using echo "${arr[0]}", "${arr[1]}" also