i need to use a variable composed from the name of another variable
#!/bin/bash -x
i=0
cat << EOF | while read -r line
a
b
c
d
EOF
do
((i++))
${z$i}=$line
done
but is not working, i get "bad substitution"
so, how can i do something like that ?