8 lines
172 B
Bash
8 lines
172 B
Bash
#!/bin/sh
|
|
mkdir -p above-the-waters
|
|
cd scenes
|
|
for i in *
|
|
do
|
|
echo "${i%.text}"
|
|
python3 ../generate.py 'Above the Waters' "$i" > ../above-the-waters/"${i%.text}.html"
|
|
done
|