Skip to content

Instantly share code, notes, and snippets.

@amr3k
Last active April 18, 2021 02:47
Show Gist options
  • Save amr3k/6a8d935648ea55061e0f2449d1199644 to your computer and use it in GitHub Desktop.
Save amr3k/6a8d935648ea55061e0f2449d1199644 to your computer and use it in GitHub Desktop.
How to clone all gists owned by user
curl -s "https://api.github.com/users/USER_NAME/gists?per_page=1000" | jq -r ".[].git_pull_url" | xargs -L1 git clone
@amr3k
Copy link
Author

amr3k commented Apr 18, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment