Last active
January 23, 2022 03:59
-
-
Save Mr-Bossman/7f4525e347cb39260592110d462b1537 to your computer and use it in GitHub Desktop.
clone all github user's repos
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
| curl -s https://api.github.com/users/mr-bossman/repos?per_page=1000 | grep clone_url | awk -F"\"" '{print "git clone " $4}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment