Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Remove Duplicates!! Please Help

by davidrw (Prior)
on Jan 03, 2008 at 15:46 UTC ( [id://660227]=note: print w/replies, xml ) Need Help??


in reply to Remove Duplicates!! Please Help

Your solution works, except for stripping newlines (because of the chomp). If you just change the print FILE2 line to:
print FILE2 $Previous, "\n";
Then it will do what you want.

Here's an alternate command-line solution:
perl -ane 'print unless $seen{$F[0]}++' /tmp/data
See perlrun for the -ane options. Here's what it looks like in use:
[me@host me]$ cat /tmp/data COMPUTER DISTRIBUTION_ID STATUS </br> 30F-WKS `1781183799.xxxx1' IC---</br> 30F-WKS `1781183799.xxx11' IC---</br> ADM34A3F9 `1781183799.41455' IC---</br> [me@host me]$ perl -ane 'print unless $seen{$F[0]}++' /tmp/data COMPUTER DISTRIBUTION_ID STATUS </br> 30F-WKS `1781183799.xxxx1' IC---</br> ADM34A3F9 `1781183799.41455' IC---</br>

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (2)
As of 2024-04-19 01:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found