mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 16:44:56 +02:00

This commit changes the term "folder" to "directory" in every instance where the first is used in an example description, but the second is used in the example code, and vice versa.
11 lines
274 B
Markdown
11 lines
274 B
Markdown
# pdfunite
|
|
|
|
> PDF merging utility.
|
|
|
|
- Merge 2 PDFs into a single PDF:
|
|
|
|
`pdfunite {{path/to/fileA.pdf}} {{path/to/fileB.pdf}} {{path/to/merged_output.pdf}}`
|
|
|
|
- Merge a directory of PDFs into a single PDF:
|
|
|
|
`pdfunite {{path/to/directory/*.pdf}} {{path/to/merged_output.pdf}}`
|