Help for this page

Select Code to Download


  1. or download this
    use Modern::Perl;
    use Tie::File;
    ...
    tie my @oldProps, 'Tie::File', 'old_properties.txt' or die $!;
    map { /([^=]+)/; $newProps{$1} and $_ = $newProps{$1} } @oldProps;
    untie @oldProps;