标签: arrays shell
我需要定义一个这样的数组:
declare -A myary myary[fruits]=(apple peach benana) myary[objects]=(car window door)
并循环播放。
如何在shell脚本中执行此操作?
谢谢。
答案 0 :(得分:0)
你做不到。 Bash不支持多维数组。但是,您可以使用一维关联数组,并找到here。