diff options
author | Holden Rohrer <hr@hrhr.dev> | 2020-02-07 00:14:10 -0500 |
---|---|---|
committer | Holden Rohrer <hr@hrhr.dev> | 2020-02-07 00:14:10 -0500 |
commit | 230eafed9aefda8688c8b9269e600b7289326a52 (patch) | |
tree | 035c5e44c2400e0d214293a7fba86eb086f2b059 /data/maketables.sh | |
parent | e3675ef3e0eda98482afc093b15fccb5b643a040 (diff) |
cleaned up python directory structure
Diffstat (limited to 'data/maketables.sh')
-rwxr-xr-x | data/maketables.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/data/maketables.sh b/data/maketables.sh index 0f043ad..dffc937 100755 --- a/data/maketables.sh +++ b/data/maketables.sh @@ -2,8 +2,7 @@ export TABLE=`mktemp` export DEATHTABLE=`mktemp` -echo $TABLE -python data.py deathtable > $DEATHTABLE -python data.py table > $TABLE +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 |