Skip to content

Instantly share code, notes, and snippets.

@decklin
Created January 27, 2010 03:07
Show Gist options
  • Save decklin/287507 to your computer and use it in GitHub Desktop.
Save decklin/287507 to your computer and use it in GitHub Desktop.
for i in $(seq 17); do curl -s -n "http://twitter.com/statuses/user_timeline.xml?count=200&page=$i" | xmlstarlet sel -t -m //status -v id -n; done | grep . | while read id; do curl -s -n -d "" http://twitter.com/statuses/destroy/$id.xml; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment