Results 1 to 1 of 1
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 ...
- 04-06-2010 #1Just Joined!
- Join Date
- Aug 2009
- Posts
- 5
Multiple variable substitution in one line
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


Reply With Quote