Skip to content

Instantly share code, notes, and snippets.

@denkiwakame
Last active March 7, 2017 02:15
Show Gist options
  • Save denkiwakame/ffae099df1fd98c35aa3 to your computer and use it in GitHub Desktop.
Save denkiwakame/ffae099df1fd98c35aa3 to your computer and use it in GitHub Desktop.
pdfkaruku
#!/bin/bash
if [ "$#" -ne 2 ]; then
echo [usage] $0 input.pdf output.pdf
exit
fi
set -e
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/default -dNOPAUSE -dQUIET -dBATCH -sOutputFile=${2} ${1}
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment