Created
January 6, 2019 23:40
-
-
Save k7faq/754cc3875a78bd15e78786c27b1060cb to your computer and use it in GitHub Desktop.
List / Clone all repos in a users GitHub Account
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Tested on MacBook Pro - Mac OS Mohave 10.14.2 | |
| # List all repos in a users GitHub Account | |
| curl -si https://api.github.com/users/terraform-aws-modules/repos | grep ssh_url | cut -d '"' -f4 | |
| # Clone all repos in a users GitHub Account | |
| curl -si https://api.github.com/users/## GITHUB USER ##/repos | grep ssh_url | cut -d '"' -f4 | xargs -I{} git clone {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment