shell 获取数组中的所有元素

code

macname@localhost Desktop % cat test.sh 
my_array[0]=A
my_array[1]=B
my_array[2]=C
my_array[3]=D

echo "数组的元素为: ${my_array[*]}"
echo "数组的元素为: ${my_array[@]}"
macname@localhost Desktop % 
macname@localhost Desktop % ./test.sh          
数组的元素为: A B C D
数组的元素为: A B C D

原文地址:https://www.cnblogs.com/sea-stream/p/14038771.html