1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 13:05:59 +02:00

pdfjoin: add page (#2040)

This commit is contained in:
Daniel Cervenkov 2018-03-23 18:44:15 +01:00 committed by Owen Voke
parent 8c8f832abb
commit eeafea4b63

15
pages/common/pdfjoin.md Normal file
View file

@ -0,0 +1,15 @@
# pdfjoin
> PDF merging utility.
- Merge two PDFs:
`pdfjoin {{file1}} {{file2}} --outfile {{output_file}}`
- Save pages 3 to 5 followed by page 1 to a new PDF:
`pdfjoin {{file 3-5,1}} --outfile {{output_file}}`
- Merge subranges from two PDFs:
`pdfjoin {{file1 3-5,1}} {{file2 4-6}} --outfile {{output_file}}`