3

在这个 bash 脚本中,我试图将两个数组组合成一个关联数组,以便在'oldFSarray' 中的第 0combineArraynewFSarray是键,而在 'oldFSarray' 中的第 0 项是相应的值,以此类推所有 133 项。

因为我是 BASH 的新手,所以我完全按照我的方式粘贴了整个代码。我很可能会犯语法错误。目前我认为有些东西不起作用,for loop因为在输出中,无论key我为 combineArray 选择什么,我都只会得到最后一个值(参见下面的当前输出)。

#! /bin/bash

declare -i arrayNum=$1-1

declare -a oldFSarray=(prollecture1 prollecture2 prollecture3 prollecture4 prollecture4b prollecture5 prollecture6 prollecture7 prollecture8 prollecture9 prollecture10 prollecture11 prollecture12 prollecture13 prollecture14 prollecture15 prollecture16 prollecture17 prollecture18 dthreelecture19 dthreeaonelecture20 dthreeaonelecture21 dthreeaonelecture22 dthreeaonelecture23 dthreeaonelecture24 dthreeatwolecture25 dthreeathreelecture26 dthreeafourlecture27 dthreeafivelecture28 dthreeafivelecture29 dthreeasixlecture30 dthreesixlecture30b dthreeasixlecture31 donelecture32 donelecture33 donelecture34 donelecture35 donelecture36 donelecture37 donelecture38 donelecture39 donelecture40 donelecture41 donelecture42 donelecture43 donelecture44 donelecture45 donelecture46 donelecture47 donelecture48 donelecture49 donelecture50 donelecture51 donelecture52 donelecture53 dTlecture54 dTlecture55 dTlecture56 dTlecture57 dTlecture58 dTlecture59 dTlecture60 dTlecture61 dTlecture62 dTlecture63 dTlecture64 dTlecture65 dTlecture66 dTlecture67 dTlecture68 dTlecture69 dTlecture70 dTlecture71 dTlecture72 dTlecture73 dTlecture74 dTlecture75 dTlecture76 dTlecture77 dClecture78 dClecture79 dClecture80 dClecture81 dClecture82 dClecture83 dClecture84 dClecture85 dClecture86 dClecture87 dClecture88 dClecture89 dClecture90 dClecture91 dClecture92 dLlecture93 dLlecture94 dLlecture95 dLlecture96 dLlecture97 dLlecture98 dLlecture99 dLlecture100 dLlecture101 dLlecture102 dLlecture103 dLlecture104 dLlecture105 dLlecture106 dLlecture107 dLlecture108 dLlecture109 dLlecture110 dLlecture111 dLlecture112 dLlecture113 dLlecture114 dLlecture115 dLlecture116 dLlecture117 dLlecture118 dLlecture119 dLlecture120 dLlecture121 dLlecture122 dLlecture123 dLlecture124 dLlecture125 dLlecture126 dLlecture127 dIlecture128 dIlecture129 dIlecture130 dIlecture131 dIlecture132 )

declare -a newFSarray=(Lectio_1 Lectio_2 Lectio_3 Lectio_4 Lectio_5 Lectio_6 Lectio_7 Lectio_8 Lectio_9 Lectio_10 Lectio_11 Lectio_12 Lectio_13 Lectio_14 Lectio_15 Lectio_16 Lectio_17 Lectio_18 Lectio_19 Lectio_20 Lectio_21 Lectio_22 Lectio_23 Lectio_24 Lectio_25 Lectio_26 Lectio_27 Lectio_28 Lectio_29 Lectio_30 Lectio_31 Lectio_32 Lectio_33 Lectio_34 Lectio_35 Lectio_36 Lectio_37 Lectio_38 Lectio_39 Lectio_40 Lectio_41 Lectio_42 Lectio_43 Lectio_44 Lectio_45 Lectio_46 Lectio_47 Lectio_48 Lectio_49 Lectio_50 Lectio_51 Lectio_52 Lectio_53 Lectio_54 Lectio_55 Lectio_56 Lectio_57 Lectio_58 Lectio_59 Lectio_60 Lectio_61 Lectio_62 Lectio_63 Lectio_64 Lectio_65 Lectio_66 Lectio_67 Lectio_68 Lectio_69 Lectio_70 Lectio_71 Lectio_72 Lectio_73 Lectio_74 Lectio_75 Lectio_76 Lectio_77 Lectio_78 Lectio_79 Lectio_80 Lectio_81 Lectio_82 Lectio_83 Lectio_84 Lectio_85 Lectio_86 Lectio_87 Lectio_88 Lectio_89 Lectio_90 Lectio_91 Lectio_92 Lectio_93 Lectio_94 Lectio_95 Lectio_96 Lectio_97 Lectio_98 Lectio_99 Lectio_100 Lectio_101 Lectio_102 Lectio_103 Lectio_104 Lectio_105 Lectio_106 Lectio_107 Lectio_108 Lectio_109 Lectio_110 Lectio_111 Lectio_112 Lectio_113 Lectio_114 Lectio_115 Lectio_116 Lectio_117 Lectio_118 Lectio_119 Lectio_120 Lectio_121 Lectio_122 Lectio_123 Lectio_124 Lectio_125 Lectio_126 Lectio_127 Lectio_128 Lectio_129 Lectio_130 Lectio_131 Lectio_132 Lectio_133 Lectio 134)

declare -a combineArray=();

for i in {0..133}
    do
        combineArray=("${combineArray[@]}" [$newFSarray[$i]]="${oldFSarray[$i]}");
    done

echo "old: "
echo ${oldFSarray[$arrayNum]}
new=${newFSarray[$arrayNum]}
echo "new: "
echo $new
echo ${combineArray[$new]}

这是当前的输出。由于我将 2 作为初始参数传递,我希望得到 prollecture2 但得到 dIlecture132 (最后一个可能的值)

$ ./plaoulFSArray.sh 2
old: 
prollecture2
new: 
Lectio_2
dIlecture132
4

1 回答 1

4

您的for循环应如下所示:

declare -A combineArray
for ((i=0; i<${#oldFSarray[@]}; i++))
    do
        combineArray+=(["${newFSarray[i]}"]="${oldFSarray[i]}")
    done

即使使用关联数组,也"${array[@]}"只返回值("${!array[@]}"返回键)。用于+=(...)追加到数组

像这样转储一个数组:declare -p combineArray

于 2013-07-19T15:07:34.400 回答