Created
December 8, 2017 19:10
-
-
Save reinzor/bb5c82fd1767efbc2609995edb54a900 to your computer and use it in GitHub Desktop.
Download github organization
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
# Replace the organization and num pages ,, | |
ORGANIZATION=tue-robotics && \ | |
NUM_PAGES=20 && \ | |
for i in $(seq 1 $NUM_PAGES); do for i in `curl -s https://api.github.com/orgs/$ORGANIZATION/repos?page=$i |grep html_url|awk 'NR%2 == 0'|cut -d ':' -f 2-3|tr -d '",'`; do git clone $i.git; done; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It needs a API key or have any dependency?