Skip to content

Instantly share code, notes, and snippets.

@adammeghji
Created May 20, 2011 19:35
Show Gist options
  • Save adammeghji/983614 to your computer and use it in GitHub Desktop.
Save adammeghji/983614 to your computer and use it in GitHub Desktop.
Scrape your Mail.app inboxes in Mac OS X for email addresses
find ~/Library/Mail/. -print | xargs perl -wne'while(/[\w\.]+@[\w\.]+[.]\w+/g){print "$&\n"}' 2> /dev/null | sort -u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment