mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:22:09 +02:00
qpdf: add merge files example (#3120)
This commit is contained in:
parent
9de9248a46
commit
d38a162d67
1 changed files with 5 additions and 1 deletions
|
@ -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}}`
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue