Files
tum-thesis-latex/crop-logos.sh
Florian Walch c8db6e56c4 Initial commit.
2014-03-26 12:06:16 +01:00

15 lines
238 B
Bash
Executable File

#!/bin/sh
command -v pdfcrop >/dev/null 2>&1 || {
echo >&2 "pdfcrop executable not found in PATH:"
echo >&2 "${PATH}"
exit 1
}
LOGOS=(tum faculty)
for logo in ${LOGOS[@]}
do
pdfcrop "logos/${logo}.pdf" "logos/${logo}.pdf"
done