Created
May 26, 2011 18:29
-
-
Save michaelcontento/993717 to your computer and use it in GitHub Desktop.
Grab profile URLs from Google and extract the users email (if public)
This file contains 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
time curl -s http://www.gstatic.com/s2/sitemaps/sitemap-[001-002].txt \ | |
| xargs -P10 -L1 -I{} sh -c "curl -s {} | egrep -o 'profiles.google.com/[^&\"]+' | cut -d'/' -f2 | egrep -v '^[0-9]+$'" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment