Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    open(MRG, ">merge.dat") or die "Oops! There was a problem: $!";
    print MRG, $d{$_}."\n" for(sort keys %d);
    close MRG;