aboutsummaryrefslogtreecommitdiff
path: root/gen/maketables.sh
blob: 5108907028d9890c284e1796470346fef2ea29e4 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

export TABLE=`mktemp`
export DEATHTABLE=`mktemp`
python python/deathtable.py > $DEATHTABLE
python python/table.py > $TABLE
sed -e "/%%DEATHTABLE%%/{r $DEATHTABLE" -e "d}" -e "/%%MAINTABLE%%/{r $TABLE" -e "d}" <gen/tables.orig.tex >gen/tables.tex
rm $DEATHTABLE $TABLE