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