qpdf: add merge files example (#3120)

italian
David Bariod 2019-06-25 06:26:09 +02:00 committed by Andrik Albuquerque
parent 9de9248a46
commit d38a162d67
1 changed files with 5 additions and 1 deletions

View File

@ -7,7 +7,11 @@
`qpdf --empty --pages {{input.pdf}} {{1-3,5,6-10}} -- {{output.pdf}}`
- Merge (concatenate) a list of PDF files and save the result as another one:
- Merge (concatenate) all the pages of a list of PDF files and save the result as a new PDF:
`qpdf --empty --pages {{file1.pdf}} {{file2.pdf}} {{file3.pdf}} -- {{output.pdf}}`
- Merge (concatenate) given pages from a list of PDF files and save the result as a new PDF:
`qpdf --empty --pages {{file1.pdf}} {{1,6-8}} --pages {{file2.pdf}} {{3,4,5}} -- {{output.pdf}}`