in reply to hash sorting/alphabetization issue : country postal codes

You can sort by the country name, instead of the code:
sort { $country_names{$a} cmp $country_names{$b} } @intl_files
See sort for the details.