Files
macos-system/bin/ocr
Rezart Qelibari 5e65a5cd2c Update ocr command
2022-04-19 06:26:37 +02:00

7 lines
132 B
Bash
Executable File

#!/bin/zsh
mkdir -p OCRed || exit
for pdf in *.pdf; do
print -- "OCRing ${pdf}"
ocrmypdf -l deu ${pdf} ./OCRed/${pdf};
done