Skip to content

JohnDoee/grepmx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

grepmx

Grep lines in a file where email matches a given MX.

Installation

pip install grepmx

Usage

Lets say you have a CSV file with user information, e.g.

firstname,surname,email,city
Michelle,Shelly,michelleshelly@yahoo.com,Kearny
Daniel,Boone,danielboone@gmail.com,New York
Michael,Fletcher,michaelfletcher@yahoo.co.jp,St Anne
Maria,Sauer,mariasauer@rocketmail.com,Arlington
Maryjane,Porter,maryjaneporter@aol.com,Southfield

and you want to find all lines with a yahoo MX, the command would be:

grepmx -m .yahoodns.? -m .yahoo.co.jp users.csv

the output is then all but the gmail.

To explain a bit what goes on with .yahoodns.?:

  • The starting dot means yahoodns and any subdomain e.g. mx-aol.mail.gm0.yahoodns.net. but not otheryahoodns.net
  • The ending questionmark tries to match on TLD, e.g. yahoodns.org or yahoodns.net

Multiple patterns can be used by using multiple -m arguments.

License

MIT, see LICENSE

About

Grep emails in a file based on their MX

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages