1

Cut select pages from a pdf file and create a new file from those pages.

 pdftk input.pdf cat 2-4 7 9-10 output output.pdf

February 3, 2012mmaki

Explanation

pdftk is the PDF Toolkit

input.pdf is the input file.

cat 2-4 7 9-10 concatenate (combine) pages 2,3,4,7,9,10 of input.pdf.

output output.pdf the resulting pdf file containing the above pages.

Alternative one-liners

1

Cut select pages from a pdf file and create a new file from those pages.

ps2pdf -dFirstPage=3 -dLastPage=10 input.pdf output.pdf

February 15, 2012Anon6y5E4Use