http://qs1969.pair.com?node_id=802163


in reply to Re^2: how to read conf file in perl script
in thread how to read conf file in perl script

Cange your config file to a module - eg.
package MyApp::Config; our $a = 1000; our $b = "test"; our $c = 2000; our $d = "test2"; 1;
Then you can load it with use MyApp::Config; and access variables in following way $MyApp::Config::c.