Using unix, the comm utility already does this (options: -1 suppress lines unique to file 1 and -3 suppress common lines, leaving only column 2 as output: the lines unique to file 2).
comm -13 file1 file2 > file3
To address the OP Perl, use regexp matching to isolate the first column - which is the correct key for the hash. It also means you then don't need to chop or chomp everything only to have to put the \n back. Also @names doesn't function as an array coercion of %names but as a completely separate piece of storage.
The following is now updated to sort the output.
open FIRST,"file1" or die "$!: file1\n";
open LAST,"file2" or die "$!: file2\n";
open NEW,">file3" or die "$!: file3\n";
my %names = ();
my %n2 = ();
while (<FIRST>) {
/^(\S+)/;
$names{$1} = 1;
}
close FIRST;
while (<LAST>) {
/^(\S+)/;
$names{$1} or $n2{$1} = $_;
}
close LAST;
print NEW $n2{ $col1 } for my $col1 ( sort keys %n2 );
close NEW;
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.