Skip to content

Instantly share code, notes, and snippets.

@chamerling
Created December 7, 2012 10:08
Get all PLAY repositories
# Install JSON gem before: gem install json
curl -s https://api.github.com/orgs/play-project/repos?per_page=200 | ruby -rubygems -e 'require "json"; JSON.load(STDIN.read).each { |repo| %x[git clone #{repo["ssh_url"]} ]}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment