- or download this
my $template;
while ( I am looping through Sections) {
...
$template = this_Section->{TEMPLATE};
last;
}
- or download this
foreach $ini_sect ( sort keys %ini_file ) {
%$ini_sect = %{ $ini_file{$ini_sect} };
}
- or download this
foreach $ini_sect ( keys %ini_file ) {
%$ini_sect = %{ $ini_file{$ini_sect} };
}