本文介绍了巴什间接寻址阵列?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
假设我有一些庆典
数组:
A1=(apple trees)
A2=(building blocks)
A3=(color television)
和指数 J = 2
,如何让 A2的数组内容
?
推荐答案
我已经找到解决方法,这可以这样做:
I've already found a resolution, this can be done by:
$ Aref=A$J
$ echo ${!Aref}
building
$ Aref=A$J[1]
$ echo ${!Aref}
blocks
$ Aref=A$J[@]
$ echo "${!Aref}"
building blocks
这篇关于巴什间接寻址阵列?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!