Skip to content

Instantly share code, notes, and snippets.

@statzhero
Created August 20, 2013 14:12
Show Gist options
  • Save statzhero/6281997 to your computer and use it in GitHub Desktop.
Save statzhero/6281997 to your computer and use it in GitHub Desktop.
A regular expression that finds email addresses saved in a Apple Mail mbox file. \+ is omitted.
grep -Eiorh '[a-zA-Z]{1}[a-zA-Z0-9_\.\-]{1,26}@[a-zA-Z0-9_\.\-]+\.(?:[a-zA-Z]{2}|com|org|net|edu|gov|mil|biz|info|mobi|name|aero|asia|jobs|museum)$' mbox | sort | uniq > emails.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment