Skip to content

Instantly share code, notes, and snippets.

@maxulysse
Created August 13, 2013 04:54
Show Gist options
  • Save maxulysse/6218002 to your computer and use it in GitHub Desktop.
Save maxulysse/6218002 to your computer and use it in GitHub Desktop.
Change pdf version
#!/bin/bash
#use : ./changePDFversion.sh file
file=$(echo $1 | sed 's/\.pdf$//g')
pdftops $file.pdf $file-temp.ps
ps2pdf13 $file-temp.ps $file-13.pdf
rm $file-temp.ps
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment