Last active
May 30, 2017 20:16
-
-
Save Paradoxis/b5e159af0fa0c3a2077031e1151f424a to your computer and use it in GitHub Desktop.
One liner to scape all email addresses in a cloned git repository
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git log --all | grep -E -o "\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,6}\b" | sort -u |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Usage: