Hi,

I want to get content of a$i variables with one command:

a1=/tmp1.log
a2=/tmp2.log

for i in 1 2;do
log=<some code>
echo $log
done

and get the content of a1 and a2:
/tmp1.log
/tmp2.log

Thanks