我不能将一个数组从一个bash脚本导出到另一个bash脚本,像这样:
export myArray[0]="Hello" export myArray[1]="World"
当我写这样没有问题:
export myArray=("Hello" "World")
由于几个原因,我需要将我的数组初始化为多行。你有什么解决方案吗?
Array variables may not (yet) be exported.
从bash版本4.1.5的manpage在ubuntu 10.04下。
下面的语句从Chet Ramey(当前bash维护者2011年)可能是关于这个“bug”的最官方的文档:
There isn’t really a good way to encode an array variable into the environment.