ocrmypdf-batch
Installation
SKILL.md
OCRmyPDF — Batch Processing Guide
Overview
OCRmyPDF supports batch processing through shell scripting, Docker, and CI/CD integration for automated OCR pipelines.
For core OCR functionality, see the ocrmypdf skill. For image processing, see ocrmypdf-image. For optimization, see ocrmypdf-optimize.
Shell Loop
Basic batch
# Process all PDFs in directory
for f in *.pdf; do
ocrmypdf "$f" "output/$f"
done