1#!/usr/bin/env bash 2 3set -eu 4set -o pipefail 5 6cd "$(dirname $0)" 7 8if [[ -z "${1+x}" ]]; then 9 read -p "List friends since which commit/tag? " since 10 echo 11else 12 since=$1 13fi 14 15git shortlog -s -n "$since.." \ 16 | cut -f 2- \ 17 | sort -u \ 18 | grep -v bors\-servo \ 19 | xargs -I{} echo "- {}" 20