in reply to Re^2: Hiding passwords in scripts
in thread Hiding passwords in scripts
and parse it with ConfigReader::Simple like:first secret second public
Updateuse strict; use ConfigReader::Simple; my $config = ConfigReader::Simple->new(".secret.config"); print $config->get( "first" ), "\n"; print $config->get( "second" ), "\n";
|
---|