From 4f83172647629e37823e76d785f77f051b25e60d Mon Sep 17 00:00:00 2001 From: Pierre Poulain Date: Wed, 28 Aug 2013 11:22:30 +0100 Subject: [PATCH] added examples for pdftk (manipulating pdf files) --- cheatsheets/pdftk | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 cheatsheets/pdftk 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 +