Usually, this kind of issue is due to something like
foreach my $key (keys %data) {
print $data{$key};
}Perl randomizes the order of the keys returned by "keys %data". The keys should be sorted to get a constant output. HTH -- https://github.com/dod38fr/ -o- http://search.cpan.org/~ddumont/ http://ddumont.wordpress.com/ -o- irc: dod at irc.debian.org

