Skip to content

Instantly share code, notes, and snippets.

@0rigin-c0de
Forked from milanboers/clone.bash
Created January 21, 2023 19:28
Show Gist options
  • Save 0rigin-c0de/3f158792b0ad275478bd6d111fc5ece3 to your computer and use it in GitHub Desktop.
Save 0rigin-c0de/3f158792b0ad275478bd6d111fc5ece3 to your computer and use it in GitHub Desktop.
Clone all repositories of a Github user
curl -s https://api.github.com/users/milanboers/repos | grep \"clone_url\" | awk '{print $2}' | sed -e 's/"//g' -e 's/,//g' | xargs -n1 git clone
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment