11 lines
352 B
Bash
Executable File
11 lines
352 B
Bash
Executable File
#!/bin/bash
|
|
input_file="Underworld.jpg"
|
|
output_prefix="WhatWeLoseAndGainInTheUnderworld"
|
|
title=$'\u201CWhat We Lose — and Gain — in the Underworld\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}"
|
|
|