in reply to Re: Re: favourite config method
in thread favourite config method
in my scripts, that way I can access things like $global_config{'logdir'} globally. I have another script which can add/change/delete hash entries and then nstore \%global_config, '/path/to/my/config.sto'; them.use Storable; $global_config = retrieve('/path/to/my/config.sto');
|
|---|