dipl/documents/mst1/test.sh
tyrolyean 4dc03e5250
Added documents for MST1 and documentation for that
Signed-off-by: tyrolyean <tyrolyean@tyrolyean.net>
2019-10-21 00:59:23 +02:00

14 lines
311 B
Bash
Executable file

#!/bin/bash
for f in *.pdf; do
echo "########################################"
echo "Tesing $f..."
echo "########################################" >> ./logfile
if pdfinfo "$f" >> ./logfile; then
echo "$f is correct!"
else
echo "$f is broken!"
fi
echo "########################################"
done