Last active
October 13, 2015 02:07
-
-
Save danwdart/4122320 to your computer and use it in GitHub Desktop.
Clones all the repos of a github user (via git+ssh)
This file contains hidden or 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
wget -O- https://api.github.com/users/$1/repos 2>/dev/null | grep ssh_url | cut -d '"' -f 4 | awk '{ print "git clone " $0 }' | sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment