I am facing a problem, please help me out.
I want to store variables in a file those variables will users input.
example
/etc/getinfo
echo Please Enter Your First Name
read fname
echo Please Enter Your Last Name
read lname
Now what i want to do is to store these variables in a file present at
"/etc/info" like
FNAME=(input by the person in /etc/getinfo)
LNAME=(input by the person in /etc/getinfo)
And one more thing, how can i call these variables in other files.
Please Help me out....


