Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Delete Duplicate Entry in a text file

by sauoq (Abbot)
on Jun 20, 2012 at 02:41 UTC ( [id://977203]=note: print w/replies, xml ) Need Help??


in reply to Delete Duplicate Entry in a text file

Assuming you've opened $fh for reading on your fail.txt file or whatever, it should be about as easy as....

my $last; while (my $line = <$fh>) { next if defined $last and $line eq $last; print $line; $last = $line; }
You'll have to modify it a bit for those blank lines, if they really appear in your log files.

Edit: added my $line = to while loop.

-sauoq
"My two cents aren't worth a dime.";

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (4)
As of 2024-04-26 04:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found