11 lines
478 B
Bash
Executable File
11 lines
478 B
Bash
Executable File
#!/bin/bash
|
|
input_file="DALL·E 2025-02-20 16.22.46 - A beautifully illustrated fantasy scene depicting a tall, intricate tower known as the Tower of Wonders. The tower is adorned with spirals, constellat.webp"
|
|
output_prefix="TheWonderfulTower"
|
|
title=$'\u201CTheWonderfulTower\u201D'
|
|
echo "input_file=${input_file}"
|
|
echo "output_prefix=${output_prefix}"
|
|
echo "title=${title}"
|
|
make-1.sh "${input_file}" "${output_prefix}"
|
|
make-2.sh "${input_file}" "${output_prefix}" "${title}"
|
|
|