#!/bin/sh # # List authors in the repository. # exec git shortlog --email --numbered --summary "$@" \ | awk '{$1=""; sub(" ", ""); print}' \ | awk -F'<' '!seen[$1]++' \ | awk -F'<' '!seen[$2]++'