Last active
August 29, 2024 20:02
-
-
Save dewomser/acf0590d38ae86343a062c580e252902 to your computer and use it in GitHub Desktop.
Make a html Linklist from all your Github Gists
This file contains 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
#!/bin/bash | |
## with a little help from copilot | |
# Ersetze 'deinBenutzername' mit deinem GitHub-Benutzernamen | |
USER='deinBenutzername' | |
# Hole die Gist-Daten von GitHub API und speichere sie in einer JSON-Datei | |
# Dauert länger und gibt nur die letzten 30 gists | |
## curl "https://api.github.com/users/$USER/gists" > gists.json | |
# geht rasend schnell mit Auth und 100 gists | |
curl --header 'Authorization: token DEIN_TOKEN' -L "https://api.github.com/users/$USER/gists?per_page=100" -o gists.json | |
# Beginne die HTML-Liste | |
echo "<ul>" > gists.html | |
# Lese jeden Gist aus der JSON-Datei und füge ihn zur HTML-Liste hinzu | |
jq -r '.[] | "<li><a href=\"\(.html_url)\">\(.description)</a></li>"' gists.json >> gists.html | |
# Beende die HTML-Liste | |
echo "</ul>" >> gists.html | |
# Lösche die temporäre JSON-Datei | |
rm gists.json | |
# Öffne die erstellte HTML-Datei im Browser (optional) | |
xdg-open gists.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment