Hi,
I am getting a string value from a function .A variable is exist by that
string value. Need to print the value using the second variable!
Example:
my $log_dir="hello";
my $name=function1(); // $name has value "log_dir"
I want the output as "hello" using the "name" variable. Is that possible?
TIA,