tridactyl/scripts/authors.sh
2018-05-23 15:39:40 +01:00

8 lines
257 B
Bash
Executable file

#!/usr/bin/env bash
cd src/static
authors="../../build/static/authors.html"
sed "/REPLACETHIS/,$ d" authors.html > "$authors"
git shortlog -sn | cut -c8- | sed 's/^/<p>/' | sed 's/$/<\/p>/' >> "$authors"
sed "1,/REPLACETHIS/ d" authors.html >> "$authors"