bash:向数组添加元素

时间:2015-12-04 09:32:00

标签: arrays bash

在这段代码中我只是将路径保存到数组#1中。这个数组运行正常:

font-awesome

好的,但现在我想将特定路径放入另一个数组(数组#2):

echo "Searching for *omd*-paths..."
cd /

# creating array#1
all_omd_paths=`find -type d -name omd`

使用第二个for-loop我只输出一个路径...但我知道在阵列#1中还有更多保存。阵列#2有什么问题?我该如何正确填写?

1 个答案:

答案 0 :(得分:1)

如果$ omd_sites_paths是一个数组:

for path in ${omd_sites_paths[@]}