Skip to content
Edd edited this page Jul 3, 2020 · 1 revision

Welcome to the email_lister wiki!

Email lister

    Program: 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 domains/usernames unique ordered
     Created: 2020-Jun-19
     version: 1.0
      author: Edd (edcruces99@gmail.com)
     example: cscript.exe email_lister.vbs input.txt output.txt
              input.txt
                       john@yahoo.com
                        edd@gmail.com
                     sophie@gmail.com
                      bob@hotmail.com
               output.txt (with -d parameter)
                         gmail.com
                       hotmail.com
                         yahoo.com
               output.txt (with -u parameter)
                         bob
                         edd
                        john
                      sophie

Log change:

Updated: 2020-Jun-24

   -Comments were included for understanding

Updated: 2020-Jul-02

   -More comments were included and the BETA folder was added for previous version
   -Arguments added on command line (line 31)

Clone this wiki locally