1.0.4 • Published 2 years ago

@dovicsin/pdfmerge-cli v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Description

This node JS library is a simple pdf merge app. It uses the pdf-merger-js library and it provides command line interface from the original pdf merge library.

Installation

npm install -g @dovicsin/pdfmerge-cli

Usage

pdfmerge-cli first.pdf sec.pdf other.pdf

Flags

NameFlagShortDefaultDescription
Output file--out-omerged.pdfOutput file name with extension.
Pages--page-pnull ( all page )This parameter controls which page(s) to be merged from every document.

Correct Pages examples

InputDescription
3merge only page 3
2, 5merge the pages 1 and 3
4 to 10merge pages 4 to 10
3-4merge pages 3 to 4
pdfmerge-cli first.pdf -p 1-3 sec.pdf 10,15,20 other.pdf

The result contains the frist.pdf 1 to 3 and sec.pdf 10 and 15 and 20 and the full other.pdf respectively.

More examples

Custom output filename

pdfmerge-cli first.pdf sec.pdf other.pdf -o mymerge.pdf