gpt4 book ai didi

arrays - 在 Bash 中循环遍历字符串数组?

转载 作者:太空宇宙 更新时间:2023-11-04 03:38:20 25 4
gpt4 key购买 nike

我想编写一个循环遍历 15 个字符串(可能是数组?)的脚本,这可能吗?

类似于:

for databaseName in listOfNames
then
# Do something
end

最佳答案

你可以像这样使用它:

## 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

也适用于多行数组声明

declare -a arr=("element1" 
"element2" "element3"
"element4"
)

关于arrays - 在 Bash 中循环遍历字符串数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30782010/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com