#[ $# -lt "1" ] && { echo 'usage: git authors '; exit -1; } git log $@ | grep Author: | cut -d: -f2 | sort | uniq -c | sort -n | tail -5