1
0
Fork 0
peertube/scripts/generate-code-contributors.sh
2018-03-27 10:35:12 +02:00

7 lines
217 B
Bash
Executable file

#!/bin/sh
set -eu
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'