Sign inSign up

ikanag0/concat_pdf

By ikanag0

Updated about 6 years ago

Lightweight and portable PDF merge tool.

Image
1

873

ikanag0/concat_pdf repository overview

concat_pdf

CircleCI

GitHub Repository: https://github.com/ikanago/concat_pdf

Docker image to concatenate separated PDF files into one file without untrustworthy third-party service or Adobe subscription.

How to Run

  1. Pull docker image.
$ docker pull ikanag0/concat_pdf
  1. Prepare files to merge

To merge PDF files properly, you have to give a serial number for each file.
For example, your input files should be like this:

$ ls files
img001.pdf  imag002.pdf  ... img010.img  img011.img
  1. Run following command
$ docker run --rm -v "`pwd`:/app" ikanago/concat_pdf:latest files
$ ls
files  output.pdf

You will get output.pdf merged in the order of the serial numbers of these files.
You can change an output file name with -o option.

You can set an alias to this command.

alias concat_pdf='docker run --rm -v "`pwd`:/app" ikanago/concat_pdf:latest'

Tag summary

Content type

Image

Digest

Size

69.1 MB

Last updated

about 6 years ago

docker pull ikanag0/concat_pdf