I know how to basically read a file of name/value pairs and set up the environment for a perl script. However if part of the 'value' contains a variable how do I resolve it so that I can correctly use it in my program?
For example, if my config file contains the fllowing 2 name/value pairs, how do I get 'mydir' to resolve to
'/kelly/test.log'.
FILE:
myfile=test.log
mydir=/kelly/$myfile
thanks guys