email list filter tool

itsmegauri

Regular Member
Joined
Apr 29, 2019
Messages
246
Reaction score
45
I have email address list,I want to filter only gmail,whats free and fast tool for same?
 
You can do it in excel itself (if you are using it)... Just copy the watch id watch it on YouTube there's a tutorial how to do it... I am not authorised till now to post links so sorry... watch?v=p5T0xl8yyYQ
 
You can do it in excel itself (if you are using it)... Just copy the watch id watch it on YouTube there's a tutorial how to do it... I am not authorised till now to post links so sorry... watch?v=p5T0xl8yyYQ
yah,I almost forgot it,but its time consumting that readymade tool
 
@echo off
echo Sorting Gmail
SET /P base="BASE.txt >>>> "
call :domain set domain

cls & echo Sorting Other...

FINDSTR /L /I /P /OFF /V "%domain%" %base% >> %base%-Other.txt

cls & echo Sorting Gmail...

FINDSTR /L /I /P /OFF "%domain%" %base% >> %base%-USA.txt

cls & echo All is good!!

pause
exit

:domain
SET [email protected]


Copy this code. Create on txt file. Paste this code on txt file, and safe as start.bat. Start duble click start.bat, and dragNdrop yout list fele gmail.com and Enter
 
Back
Top