如何在Bash中循環遍歷數組
了解如何在Bash中循環遍歷數組
我有一個包含3個字符串的數組:
1 | list=( "first" "second" "third" ) |
我想在Bash Shell腳本中對它們進行循環遍歷。
下面是我的實現方式:
1 | for i in "${list[@]}" |
tags: [“bash”, “loop”, “array”]
了解如何在Bash中循環遍歷數組
我有一個包含3個字符串的數組:
1 | list=( "first" "second" "third" ) |
我想在Bash Shell腳本中對它們進行循環遍歷。
下面是我的實現方式:
1 | for i in "${list[@]}" |
tags: [“bash”, “loop”, “array”]