bash array

Updated: 05 February 2025

Bash does not support multi-dimensional arrays.


Print all elements of an array, each on a new line

printf '%s\n' "${our_array[@]}"

Leave a comment