Skip to content

Instantly share code, notes, and snippets.

@mxbees
Created March 6, 2015 15:38
Show Gist options
  • Save mxbees/52832bb97ad2873756fb to your computer and use it in GitHub Desktop.
Save mxbees/52832bb97ad2873756fb to your computer and use it in GitHub Desktop.
force-unfollow.sh
#!/bin/bash
#this script requires 't', a ruby gem for twitter.
# https://github.com/sferik/t.git
# gem install t
t followers > followers.txt
while read line
do
t block $line
t delete block $line
sleep 5.5
done < followers.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment