Skip to content

Instantly share code, notes, and snippets.

@bkeepers
Created June 4, 2013 14:29
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bkeepers/5706352 to your computer and use it in GitHub Desktop.
Save bkeepers/5706352 to your computer and use it in GitHub Desktop.
Create a list of GitHubbers and follow all of them.
#!/bin/sh
#
# Requires the `t` gem: https://github.com/sferik/t
#
# gem install t
#
if [ -z $(t lists | grep -i githubbers) ]
then
t list create GitHubbers
fi
t list members cobyism/githubbers | xargs t list add GitHubbers
t followings github | xargs t list add GitHubbers
t list members GitHubbers | xargs t follow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment