gpt4 book ai didi

linux - 在bash shell脚本中从一维数组转换为二维数组

转载 作者:太空宇宙 更新时间:2023-11-04 12:44:43 27 4
gpt4 key购买 nike

    #!/bin/bash

arrNum=(1 2 3 4)

for ((i = 0; i< 4; i++)) do
echo -n ${arrNum[i]}
done
echo

我有一个这样的数组。一维数组。如何将其更改为二维数组?

最佳答案

你可以这样做:

#!/bin/bash

arrNum=(1 2 3 4)

for ((j = 0; j< 4; j++)) do
for ((i = 0; i< 4; i++)) do
echo "${arrNum[i]} - ${arrNum[j]}"
done
echo
done

关于linux - 在bash shell脚本中从一维数组转换为二维数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39087807/

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