Skip to content

Instantly share code, notes, and snippets.

@jedahan
Created May 8, 2012 15:20
Show Gist options
  • Select an option

  • Save jedahan/2636214 to your computer and use it in GitHub Desktop.

Select an option

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
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