| 123456789101112131415161718192021222324252627282930 | #!/bin/bashset -efunction usage() {    >&2 cat << EOMPrint the list of github contributors for the releaseUsage:    $0 <previous release tag>EOM    exit 1}[[ -n "$1" ]] || usagePREV_RELEASE=$1VERSION=HEADURL="https://api.github.com/repos/docker/compose/compare"contribs=$(curl -sf "$URL/$PREV_RELEASE...$VERSION" | \    jq -r '.commits[].author.login' | \    sort | \    uniq -c | \    sort -nr)echo "Contributions by user: "echo "$contribs"echoecho "$contribs" | awk '{print "@"$2","}' | xargs
 |