What is the best way to parse INI file in Perl and convert it to hash?
Config::Tiny is very easy and straightforward to use.
$Config = Config::Tiny->read( 'file.conf' ); my $one = $Config->{section}->{one}; my $Foo = $Config->{section}->{Foo};