Skip to content

Instantly share code, notes, and snippets.

@bubbadestroy
Forked from vke-code/download-all-repos.sh
Created January 15, 2020 10:57
Show Gist options
  • Save bubbadestroy/0217599bf6c15cda283ab44e2afd7f4c to your computer and use it in GitHub Desktop.
Save bubbadestroy/0217599bf6c15cda283ab44e2afd7f4c to your computer and use it in GitHub Desktop.
#!/bin/bash
# Clone all github.com repositories for a specified user.
if [ $# -eq 0 ]
then
echo "Usage: $0 <user_name> "
exit;
fi
USER=$1
# clone all repositories for user specifed
for repo in `curl -s https://api.github.com/users/$USER/repos?per_page=1000 |grep git_url |awk '{print $2}'| sed 's/"\(.*\)",/\1/'`;do
git clone $repo;
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment