pdf_scripts/pdfcompress.sh

13 lines
221 B
Bash
Raw Permalink Normal View History

2021-01-12 15:38:14 +01:00
#!/bin/bash
name=$1
gs \
-dNOPAUSE \
-dBATCH \
-sDEVICE=pdfwrite \
-dQUIET \
-dCompatibilityLevel=1.4 \
-dAutoRotatePages=/None \
-dPDFSETTINGS=/ebook \
-sOutputFile="$name-ebook.pdf" \
"$name"