I have a large text file containing a list of emails called "main", and I have sent mails to some of them. I have a list of 'sent' emails. Now, I want to remove the 'sent' emails from the list "main".
In other words, I want to remove both the matching raw from the text file while removing duplicates. Example:
I have:
[email protected]
[email protected]
[email protected]
I want:
[email protected]
Is there any easier way to achieve this? Please suggest a tool or method to do this, but please consider the text file is larger than 10MB.