Created
April 19, 2013 00:37
-
-
Save RSully/5417304 to your computer and use it in GitHub Desktop.
Function to convert PCL to PDF using `pcl6`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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