1# Combine existing list of authors with everyone known in git, sort, add header. 2tail --lines=+3 AUTHORS > AUTHORS.tmp 3git log --format='%aN' | grep -v abraidwood >> AUTHORS.tmp 4echo -e "List of Acorn contributors. Updated before every release.\n" > AUTHORS 5sort -u AUTHORS.tmp >> AUTHORS 6rm -f AUTHORS.tmp 7 8