Created
September 29, 2012 09:15
-
-
Save yenliangl/3803537 to your computer and use it in GitHub Desktop.
Combine multiple pdf files by pdftk
This file contains 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
# combine several pdf files | |
pdftk file1.pdf file2.pdf file3.pdf cat output newfile.pdf | |
# combine files | |
pdftk *.pdf cat output newfile.pdf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment