7 lines
217 B
Bash
Executable file
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'
|