http://www.perlmonks.org?node_id=1028963


in reply to a one-liner for this trivial problem?

This solution is just if you really insist on using Perl; the Re: a one-liner for this trivial problem? suggestion using grep is better....
perl -pie ' BEGIN { open $fh, "<" , "littlefile" or die "Cannot read file"; our %hash = map { $_ => 1} <$fh>; } print if not $hash{$_}; ' < bigfile

All the above will go on one line. any minor bugs are your problem (chomps may be needed for example) :-)

A Monk aims to give answers to those who have none, and to learn from those who know more.