use strict;open TXT1, "1.txt" or die "$!";open TXT2, "2.txt" or die "$!";my %diff;$diff{$_}=1 while ();while(){ print unless $diff{$_};}close TXT2;close TXT1;
Post a Comment
No comments:
Post a Comment