I try to make this (example...) :
list1 = ("one" "two" "three")
list2 = ("four" "five" "six")
list3 = ("seven" "eight" "nine")
listn (finite number)...
for i in {1..n}; do
list= ${list[$i][@]}
echo "The elements of list $i are : $list"
done
but
${list[$i][@]}
is wrong ("substitution" error).
Can you help me?