Skip to content

Instantly share code, notes, and snippets.

@adam-lee
Last active December 17, 2015 07:03
Show Gist options
  • Save adam-lee/9612180 to your computer and use it in GitHub Desktop.
Save adam-lee/9612180 to your computer and use it in GitHub Desktop.
Twitter Unfollow Script
#!/usr/bin/env ruby
# step 1 install t - https://github.com/sferik/t
# step 2 generate a list of followings - '$ t followings > followings'
# step 3
f = File.open("followings", "r")
f.each_line do |line|
system 't', 'unfollow', line
sleep(1.0)
end
f.close
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment