in_the_temple/build.sh

9 lines
163 B
Bash
Raw Permalink Normal View History

2020-01-12 21:52:52 +00:00
#!/bin/sh
mkdir -p in-the-temple
cd scenes
for i in *
do
echo "${i%.text}"
python3 ../generate.py 'In the Temple' "$i" > ../in-the-temple/"${i%.text}.html"
done