This command line shows, how to get the output files named your way:
$ pdftk … burst output ‘page.%02d.pdf’
Split Select Pages from Multiple PDFs into a New Document:
$ pdftk A=one.pdf B=two.pdf cat A1-7 B1-5 A8 output combined.pdf
Select a single page (#130) into a new document:
$ pdftk A=one.pdf cat A130 output one.p130.pdf
Extract pages 10 through 11 to y.pdf :
$ pdftk x.pdf cat 10-11 output y.pdf
Please find more information (like examples, man page, …) on pdftk through the link above!
Leave a Reply