Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 421 Bytes

File metadata and controls

14 lines (12 loc) · 421 Bytes
p=1;
while true; do
    s=$(curl "https://api.github.com/repos/Guepard-Corp/qwery-core/contributors?page=$p") || break
    [ "0" = $(echo $s | jq length) ] && break
    echo $s | jq -r '.[] | "* [" + .login + "](" + .html_url + ")"'
    p=$((p+1))
done