Skip to content

Instantly share code, notes, and snippets.

@lennyjpg
Created April 10, 2013 22:14
Show Gist options
  • Save lennyjpg/5358929 to your computer and use it in GitHub Desktop.
Save lennyjpg/5358929 to your computer and use it in GitHub Desktop.
who you sent mail to, sorted by frequency
find ~/Library/Mail/ -name "*.emlx" -print0 | xargs -0 grep "^To:" -h | grep -o '[[:alnum:]+\.\_\-]*@[[:alnum:]+\.\_\-]*' | sort | uniq -c | sort -rn > ~/Desktop/recipients-sorted-by-frequency.txt && open ~/Desktop/recipients-sorted-by-frequency.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment