diff --git a/cheatsheets/pdftk b/cheatsheets/pdftk new file mode 100644 index 0000000..d4d2ec2 --- /dev/null +++ b/cheatsheets/pdftk @@ -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 +