Initial commit.

This commit is contained in:
Florian Walch
2014-03-26 11:08:54 +01:00
commit c8db6e56c4
21 changed files with 383 additions and 0 deletions

14
crop-logos.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/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