Skip to content

Instantly share code, notes, and snippets.

@delokman
Forked from milanboers/clone.bash
Created March 25, 2021 06:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save delokman/002348795c9ddb23e27233270aeb0876 to your computer and use it in GitHub Desktop.
Save delokman/002348795c9ddb23e27233270aeb0876 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