Suppose I have some bash arrays:
A1=(apple trees)
A2=(building blocks)
A3=(color television)
And index J=2, how to get the array contents of A2?
|
I've already found a resolution, this can be done by:
|
|||
|
|
It’s worth to note, that even an index will be substituted at time the variable is evaluated:
|
|||
|
${!ind[@]}but I never thought to introduce a temp var to solve it. – SiegeX Jan 3 '11 at 5:08d=13; e=24; f=35; a=(d e f); echo ${!a[1]}which results in "24". – Dennis Williamson Jan 3 '11 at 5:51