aboutsummaryrefslogtreecommitdiff
path: root/private_dot_local/bin/executable_compresspdf
blob: c79da7e3bbe439857bf9bd7f4e8ebcda8a586d6d (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

file="${1}"
ext="${file##*.}"
base="${file%.*}"

[ "${ext}" = "pdf" ] || exit
gs -sDEVICE=pdfwrite -dPDFSETTINGS=/ebook -dNOPAUSE -dQUIET -dBATCH -sOutputFile="${base}-compressed${ext}" "${file}"