0

I have several very large PDF files that I need to split into smaller ones by page number.

For example: In a 100 page long PDF, I want to have one PDF with pages 1-2, one with 3-4, one with 4-5 and so on.. Is this possible to Automate in any way? I need to do this with several documents.

Hennes
  • 65,804
  • 7
  • 115
  • 169
Gustaf
  • 1

1 Answers1

0

You could for example use PDFSam (which should also be available for mac).

pdfsam -f x.pdf -o . -s NSPLIT -n 2 split splits the PDF x.pdf after every second page.

In terminal pdfsam might also be pdfsam-console.

ap0
  • 1,318