Hi,
I have a file filelist.txt which has the following line:
/usr/lpp/$var/directory
In my script,
var=abc123
line=`cat filelist.txt`
echo $line
It shows /usr/lpp/$var/directory
How to make it so that i have /usr/lpp/abc123/directory ?
Thanks and regards.