Skip to content

Instantly share code, notes, and snippets.

@stevesimmons
Created January 26, 2022 07:34
Show Gist options
  • Save stevesimmons/2ae761422d54e1bc5c4fed278e4c5b9a to your computer and use it in GitHub Desktop.
Save stevesimmons/2ae761422d54e1bc5c4fed278e4c5b9a to your computer and use it in GitHub Desktop.
Extract starred repos on Github
#!/bin/bash
USER=${1:-stevesimmons}
while curl -s "https://api.github.com/users/$USER/starred?per_page=100&page=${page:-1}" \
| jq -r -e '.[].full_name' && [[ ${PIPESTATUS[1]} != 4 ]]; do
let page++
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment