Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: a one-liner for this trivial problem?

by space_monk (Chaplain)
on Apr 16, 2013 at 17:09 UTC ( [id://1028963]=note: print w/replies, xml ) Need Help??


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.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1028963]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2024-04-19 21:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found