Created
May 2, 2021 01:12
-
-
Save AndrewPaglusch/da69bec02241c64e976157cfa67684be to your computer and use it in GitHub Desktop.
Export All GitHub Gists for a User - One Liner
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/AndrewPaglusch/gists' | grep -oP '(?<=raw_url\":[ ]\")[^(\",)]+' | while read i; do filename=$(grep -oP '(?<=\/)[^\/]+$' <<< $i); echo "Downloading $filename..."; curl -Lso "$filename" "$i"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment