Files
OCRmyPDF/test/OCRmyPDF_severaltimes.sh
T
fritz-hh 815117f653 add test script
aimed at checking if the quality of the images drops quickly or not
2013-04-26 14:26:03 +02:00

15 lines
287 B
Bash

#!/bin/sh
#
# Perform OCR several times in order to find how quicly the quality decreases
cpt=1
while [ $cpt -le 10 ] ; do
echo "------- Itteration $cpt ---------"
! ../OCRmyPDF.sh -vv -l deu -k ../tmp/ocred-$(($cpt-1)).pdf ../tmp/ocred-$cpt.pdf && exit 1
cpt=$(($cpt+1))
done