Created
March 19, 2013 20:56
-
-
Save ranjib/5200067 to your computer and use it in GitHub Desktop.
Clone all opscode cookbooks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'nokogiri' | |
require 'restclient' | |
Nokogiri::HTML(RestClient.get('https://github.com/opscode-cookbooks/')). | |
css('ul.repolist h3 a').collect{|n| n.attribute('href').value}.each do |s| | |
system "git clone http://github.com#{s}" | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment