Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spencern/63e420fb155a3f505fdce478a246a004 to your computer and use it in GitHub Desktop.
Save spencern/63e420fb155a3f505fdce478a246a004 to your computer and use it in GitHub Desktop.
find . -type d \( -path ./node_modules -o -path ./.meteor -o -path ./.git \) -prune -o -name '*.*' -print0 | xargs -0 -I{} git blame --show-email {} | perl -n -e '/^[a-z0-9]{10}\s\(<(([a-zA-Z0-9_\-\.]+)@([a-zA-Z0-9_\-\.]+)\.([a-zA-Z]{2,9}))>/ && print "$1\n"' | sort | uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment