Remove Duplicates Tool

Proxy Cake

Elite Member
Jr. VIP
Joined
Feb 28, 2010
Messages
5,501
Reaction score
4,420
Hey guys. I have 2 email lists and I want to remove the duplicates. Is there any tool I can use to do this?
 
Try this
Code:
http://www.brothersoft.com/remove-%28delete%29-duplicate-email-addresse-126183.html

or else you can do that manually using excel. Here is the step-by-step instruction

Code:
http://www.digdb.com/excel_add_ins/duplicates_find_remove_dedupe/
 
Last edited:
Try this . works perfectly...
Code:
http://www.mediafire.com/?q9ui54ebabsw1uz

VT
Code:
http://www.virustotal.com/file-scan/reanalysis.html?id=6932267da6141f3fd306c7f695652589828fba9882628d188c3dd298943b4e04-1296312178
 
Last edited:
Code:
#!/usr/bin/perl

use strict;
use warnings;

my $file = 'email.txt';
my %seen = ();
{
   local @ARGV = ($file);
   local $^I = '.bac';
   while(<>){
      $seen{$_}++;
      next if $seen{$_} > 1;
      print;
   }
}
print "finished processing file.";

Simple, clean, and fast.
 
Try this . works perfectly...
Code:
http://www.mediafire.com/?q9ui54ebabsw1uz

VT
Code:
http://www.virustotal.com/file-scan/reanalysis.html?id=6932267da6141f3fd306c7f695652589828fba9882628d188c3dd298943b4e04-1296312178

How do I use this man? :D I'm baked and cant figure it haha
 
This is what i've been using. So far so good:
textop[dot]us/Lines-tools/Delete-Duplicate-Lines

Obviously replace [dot] with "."
 
Make a new file and name it whatever you'd like, say removedupes.pl, download ActivePerl(google it), and place your list(name it emails.txt) in the same location as the removedupes.pl file, and run removedupes.pl. That simple. Your file with dupes removed will still be labeled emails.txt, and you'll have a new file named emails.bac, which contains the old list before the dupes were removed.

I would love to know how to use this...do I have to make a p hp fi le, add this code to it, upload it to my server, open it and then add my em a ils???
 
Last edited:
How do I use this man? :D I'm baked and cant figure it haha
extract rar file and run the exe file. then click "email list" tab and import emails.then click the "clean list" button. If you want to compare another email list, click the tab of "Remove list" and import that list to it. Then click "email list" tab and then click "clean list" button .

Very easy...:D
 
I guess SB can do. Just copy-paste that list to keyword scrapper and remove duplicates.
 
Back
Top