##
dog
sun
moon
umbrella
rain
####
cat
dogwhisperer
mother
####
open(RANDOM,"<",$frandom) or die("could not open first file!");
my @r_contents = ;
close(RANDOM);
open(FILTER,"<",$ffilter) or die("could not open the second file!");
while()
{
chomp;
my $line = $_;
@r_contents = grep(!/^$line$/,@r_contents);
}
close(FILTER);
print @r_contents;