Help for this page

Select Code to Download


  1. or download this
        open TWO, '<', $FILE2;        # better be explicit ;-)
        while (<TWO>)
    ...
            print "$key NOT IN FILE 1\n" unless $hash1{$key};
            $hash2{$key} = $value;
        }
    
  2. or download this
    foreach my $key (keys %hash1)
    {
    ...
        }
    }