#!/usr/bin/perl
use strict;
use warnings;
use Config::General qw{ParseConfig};
use Tie::IxHash;
my $file = 'test.cfg';
tie my %CFG, "Tie::IxHash";
%CFG = ParseConfig(
-ConfigFile => $file,
-Tie => "Tie::IxHash",
);
print "When freshly loaded:\n";
print join "\n", keys %CFG;
print "\n\n";
(new Config::General(
-ConfigHash => \%CFG,
-Tie => "Tie::IxHash",
))->save_file($file);
# SaveConfig appears "equally bad" at this..
%CFG = ParseConfig(
-ConfigFile => $file,
-Tie => "Tie::IxHash",
);
print "When saved & reloaded:\n";
print join "\n", keys %CFG;
####
opt val
opt val
opt val
opt val
opt val
opt val
####
When freshly loaded:
abc1
abc2
cba1
cba2
test1
test2
When saved & reloaded:
test1
cba2
abc2
abc1
test2
cba1