Created
May 24, 2013 20:53
-
-
Save BlackMaria/5646448 to your computer and use it in GitHub Desktop.
I use this all the time. d to a dir and create one pdf from all of the pdf's in that dir ( or use it in the command line, which is what I do ).
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
#!/bin/sh | |
pdf=*.pdf | |
gs -q -sPAPERSIZE=letter -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=pdfmerged.pdf $pdf | |
# yeah!!!! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment