added examples for pdftk (manipulating pdf files)

This commit is contained in:
Pierre Poulain 2013-08-28 11:22:30 +01:00
parent 79a091a275
commit 4f83172647
1 changed files with 6 additions and 0 deletions

6
cheatsheets/pdftk Normal file
View File

@ -0,0 +1,6 @@
# Concatenate all pdf files into one:
pdftk *.pdf cat output all.pdf
# Concatenate pages 1 to 5 of first.pdf with page 3 of second.pdf
pdftk A=fist.pdf B=second.pdf cat A1-5 B3 output new.pdf