最佳答案
如何在单独的行上打印Bash数组的数组元素?这个方法很有效,但肯定有更好的方法:
$ my_array=(one two three)
$ for i in ${my_array[@]}; do echo $i; done
one
two
three
我试过下面这个方法,但是没有用:
$ IFS=$'\n' echo ${my_array[*]}
one two three