aboutsummaryrefslogtreecommitdiff
path: root/data/maketables.sh
diff options
context:
space:
mode:
authorHolden Rohrer <hr@hrhr.dev>2020-02-07 19:30:03 -0500
committerHolden Rohrer <hr@hrhr.dev>2020-02-07 19:30:03 -0500
commit88c1d359e29e19264b4fc5e91974f2bdeb5ab148 (patch)
tree23ae4e75ba99aa243ca07fe81eda5dcb167c3215 /data/maketables.sh
parent6da6e7e4b9e1b2c97d5501b62f52ce07e1cec269 (diff)
made .tex file generation more simple
Diffstat (limited to 'data/maketables.sh')
-rwxr-xr-xdata/maketables.sh8
1 files changed, 0 insertions, 8 deletions
diff --git a/data/maketables.sh b/data/maketables.sh
deleted file mode 100755
index dffc937..0000000
--- a/data/maketables.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/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}" <data/tables.orig.tex >data/tables.tex
-rm $DEATHTABLE $TABLE