Files
unibo-ai-notes/utils/cropped_pdfs.sh
2024-03-29 11:01:58 +01:00

7 lines
345 B
Bash

# Rewrites pdfs to remove the content outside the crop-box.
git ls-files --others --modified --exclude-standard `git rev-parse --show-toplevel`/*.pdf | while read -r pdf ; do
echo "Rewriting $pdf"
mv "$pdf" /tmp/ai_notes_cropped_pdf_processing.pdf
gs -dQUIET -sDEVICE=pdfwrite -o "$pdf" /tmp/ai_notes_cropped_pdf_processing.pdf
done