Skip to content

Instantly share code, notes, and snippets.

@thieu1995
Created May 8, 2020 22:37
Show Gist options
  • Save thieu1995/9111eca3ba6aef5550d8a3e9b0c2a487 to your computer and use it in GitHub Desktop.
Save thieu1995/9111eca3ba6aef5550d8a3e9b0c2a487 to your computer and use it in GitHub Desktop.
Download all public github's repository of a specific user
#!/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