Take a text file with emails and generate another txt with the unique domains or usernames
Program: Email lister
Language: visual basic script
Main: email_lister.vbs
Purpose: Take a text file with emails and generate another txt with the unique domains or usernames
input: txt file with emails
output: txt file with email with domains/usernames unique ordered
Created: 2020-Jun-19
version: 1.0
author: Edd ([email protected])
example: cscript.exe email_lister.vbs input.txt output.txt
input.txt
[email protected]
[email protected]
[email protected]
[email protected]
output.txt (with -d parameter)
gmail.com
hotmail.com
yahoo.com
output.txt (with -u parameter)
bob
edd
john
sophie
-Comments were included for understanding
-More comments were included and the BETA folder was added for previous version
-Arguments added on command line (line 31)