Skip to content

Instantly share code, notes, and snippets.

@MarounMaroun
Created November 25, 2017 09:15
Show Gist options
  • Save MarounMaroun/bbc76299ff084c36efc8ad7d6464b77d to your computer and use it in GitHub Desktop.
Save MarounMaroun/bbc76299ff084c36efc8ad7d6464b77d to your computer and use it in GitHub Desktop.
Clone all of your public repositories
repos=$(curl -s https://api.github.com/users/{USER}/repos?per_page=1000 | grep -oP "(?<=clone_url\": \").*(?=\")")
echo "$repos" | while read line ; do
git clone $line
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment