Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ?

share|improve this question
Since @dirkgently solved your issue, please don't forget to accept his answer. – CodeGnome Jun 6 '12 at 16:28

1 Answer

If there isn't a particular reason to stick to z1, z2 etc. I'd recommend using Arrays instead.

share|improve this answer
no reason ... thanks, this solves my problem – THESorcerer Jun 6 '12 at 15:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.