Created
May 8, 2012 15:20
-
-
Save jedahan/2636214 to your computer and use it in GitHub Desktop.
check if anyone you follow or follows you is in the twitter password dump
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
| for f in `t following | cut -d'@' -f2`; do ack $f twitter_account*.txt; done | |
| for f in `t followers | cut -d'@' -f2`; do ack $f twitter_account*.txt; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment