in_the_temple/build.sh

9 lines
163 B
Bash

#!/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