mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 02:09:37 +02:00
5 lines
218 B
Bash
Executable file
5 lines
218 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
curl -s https://api.github.com/repos/chocobozzz/peertube/contributors | \
|
|
jq -r 'map("\\\n * [" + .login + "](" + .url + ")") | .[]' | \
|
|
xargs echo | sed 's/api.github.com\/users/github.com/g'
|