View Single Post
Posts: 75 | Thanked: 269 times | Joined on Aug 2012
#1852
Thanks Pali, very helpful. I'll try to keep my questions to irc.

@mr_pingu
I know you were looking to try building the cssu packages too so this may be helpful. It's what I used to clone all the repos.
Code:
curl -s https://api.github.com/users/community-ssu/repos?per_page=100 | python -c $'import json, sys, os\nfor repo in json.load(sys.stdin): os.system("git clone " + repo["clone_url"])'
curl -s https://api.github.com/users/community-ssu/repos?per_page=100\&page=2 | python -c $'import json, sys, os\nfor repo in json.load(sys.stdin): os.system("git clone " + repo["clone_url"])'
 

The Following 4 Users Say Thank You to Ilew For This Useful Post: