I just made this for Regicidal, you can chose which emails you wanna extract from your email list.
^Won't change image, but i changed link on the source for RuneGear
On the "Emails you are looking for" put the grou you wanna exctract. Ex: @gmail or @hotmail or @hotmail.com w/e you want
Reverse scan = Will give you all the emails that doesn't contain the one you choose.
When asked for the file, simple drag and drop your list.
The list will be save as Emails_email you looked for.txt
Source Code:
^Won't change image, but i changed link on the source for RuneGear
On the "Emails you are looking for" put the grou you wanna exctract. Ex: @gmail or @hotmail or @hotmail.com w/e you want
Reverse scan = Will give you all the emails that doesn't contain the one you choose.
When asked for the file, simple drag and drop your list.
The list will be save as Emails_email you looked for.txt
Source Code:
Code:
@echo off
color 0f
:start
cls
echo Email Organizer by Worms - Requested from RuneGear.net
echo.
set /p palavra=What emails are you looking for:
echo.
:inverte
set /p inverter=Would you like to use reverse scan?(y/n):
if %inverter% equ y goto aa
if %inverter% equ n goto aa
goto inverte
:aa
echo.
:caps
set /p caps=Ignore case sensitive?(y/n):
if %caps% equ y goto bb
if %caps% equ n goto bb
goto caps
:bb
echo.
set /p arquivo=File to be scanned:
echo.
set /p relat=Save .txt report after scan?(y/n):
if %inverter% equ y goto inv
goto naoinv
:inv
set %inv%=/c
:naoinv
if %caps% equ y goto igno
goto find
:igno
set igno=/i
:find
echo.
find %inv% %igno% "%palavra%" %arquivo%
if %relat% equ n goto nrel
find %inv% %igno% "%palavra%" %arquivo% >> Emails_%palavra%.txt
:nrel
echo.
set /p pause=Press Enter to start a new scan:
goto start
