aboutsummaryrefslogtreecommitdiff
path: root/scripts/.local/bin/personal/compresspdf
blob: 8ad1b070d90f5e8eed39bb6e26479351eabdadd7 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

# PDF Compressor
# Dependencies: ghostscript

if [[ -e $1 ]]; then
  gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/prepress -dNOPAUSE -dQUIET -dBATCH -sOutputFile="${1}_compressed.pdf" "$1" &&
  printf "done" || printf "error"
fi