You are viewing a single comment's thread. Return to all comments →
echo ${array[@]} ${array[@]} ${array[@]}
or if you want to make it as 1 array
array=(${array[@]} ${array[@]} ${array[@]}) # Three times because it completly override array echo ${array[@]}
Seems like cookies are disabled on this browser, please enable them to open this website
Concatenate an array with itself
You are viewing a single comment's thread. Return to all comments →
or if you want to make it as 1 array