| 
  • If you are citizen of an European Union member nation, you may not use this service unless you are at least 16 years old.

  • You already know Dokkio is an AI-powered assistant to organize & manage your digital files & messages. Very soon, Dokkio will support Outlook as well as One Drive. Check it out today!

View
 

pdftk

Page history last edited by Sérgio Luiz Araújo Silva 12 years, 7 months ago

Pdftk Examples

These examples show you how to perform common PDF tasks from the command-line using pdftk.

Merge Two or More PDFs into a New Document

pdftk 1.pdf 2.pdf 3.pdf cat output 123.pdf

or (Using Handles):

pdftk A=1.pdf B=2.pdf cat A B output 12.pdf

or (Using Wildcards):

pdftk *.pdf cat output combined.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

 

Para mais exemplos acesse: http://www.pdflabs.com/docs/pdftk-cli-examples/

Comments (0)

You don't have permission to comment on this page.