Skip to content

Instantly share code, notes, and snippets.

@ProGM
Created June 3, 2015 13:52
Show Gist options
  • Save ProGM/85198a7488575a1ad41f to your computer and use it in GitHub Desktop.
Save ProGM/85198a7488575a1ad41f to your computer and use it in GitHub Desktop.
Useful commands to manage your twitter account using t https://github.com/sferik/t
# List all leaders (people you follow that doesn't follow back) ordered by followers - followings.
# This is useful to identify people that never follow back.
t leaders -l | awk '{ print $12-$11,"\t",$13 }' | sort -k1,1nr -k2,2
# Unfollow top ten people extracted by the previous command:
t leaders -l | awk '{ print $12-$11,"\t",$13 }' | sort -k1,1nr -k2,2 | awk '{print $2}' | head -10 | xargs t unfollow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment