mirror of
https://gitlab.cs.fau.de/ik15ydit/latexandmore.git
synced 2024-11-21 19:43:17 +01:00
6 lines
71 B
Bash
Executable File
6 lines
71 B
Bash
Executable File
#!/bin/bash
|
|
if [ ! -f $1 ]; then
|
|
echo "PDF Missing!"
|
|
exit 1
|
|
fi
|