Skip to content

Instantly share code, notes, and snippets.

@RSully
Created April 19, 2013 00:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RSully/5417304 to your computer and use it in GitHub Desktop.
Save RSully/5417304 to your computer and use it in GitHub Desktop.
Function to convert PCL to PDF using `pcl6`
pcl2pdf() {
input=$1
output=${2-$input.pdf}
pcl6 -o $output -sDEVICE=pdfwrite $input
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment