This will filter your email list (it must be separated by lines) and extract all the emails that pelican accepts in separated files. Made by me for you guys 
Put it in a clean folder, because the files will be generated on the directory that this batch is.
If you need to filter lots of files don't worry, just go dropping them and pressing enter, they will stack. If you wanna start a new filter, delete the ,txts created on the directory.
Source Code (Save as .bat)
Put it in a clean folder, because the files will be generated on the directory that this batch is.
If you need to filter lots of files don't worry, just go dropping them and pressing enter, they will stack. If you wanna start a new filter, delete the ,txts created on the directory.
Source Code (Save as .bat)
Code:
@echo off
color 1f
:start
cls
echo.
echo Pelican E-Mail Filter - By Worms
echo.
echo Drop your email file here:
set /p file=
find /i "@gmail" %file% >> Emails_gmail.txt
cls
echo Gmail Done.
find /i "@yahoo" %file% >> Emails_yahoo.txt
cls
echo Gmail Done.
echo Yahoo Done.
find /i "@live" %file% >> Emails_live.txt
cls
echo Gmail Done.
echo Yahoo Done.
echo Live Done.
find /i "@hotmail" %file% >> Emails_hotmail.txt
cls
echo Gmail Done.
echo Yahoo Done.
echo Live Done.
echo Hotmal Done.
find /i "@aol" %file% >> Emails_aol.txt
cls
echo Gmail Done.
echo Yahoo Done.
echo Live Done.
echo Hotmal Done.
echo AOL Done.
find /i "@rsbuddy" %file% >> Emails_rsbuddy.txt
cls
echo Gmail Done.
echo Yahoo Done.
echo Live Done.
echo Hotmal Done.
echo AOL Done.
echo RSBuddy Done.
find /i "@powerbot" %file% >> Emails_powerbot.txt
cls
echo Gmail Done.
echo Yahoo Done.
echo Live Done.
echo Hotmal Done.
echo AOL Done.
echo RSBuddy Done.
echo Powerbot Done.
echo.
echo All done! Press enter to filter another file!
set /p pause=
goto start