The “pdftk” program (available here) is a commandline program that can split and combine PDF files (among other functions).
The source website has links to graphical user interfaces for pdftk, but the guidelines here assume you are using the industrial-strength commandline version.
To use it, first see if it has been installed on your computer (if it hasn’t been, take care of that first!). To determine that:
pdftkIf “pdftk” is installed, you’ll see “SYNOPSIS” followed by some brief help information. If it is not installed, you’ll see an error message that your system could not find it.
Imagine you have three PDF files (file1.pdf, file2.pdf, and file3.pdf) that you would like to combine into one big PDF file (all.pdf).
cd command)pdftk file1.pdf file2.pdf file3.pdf cat output all.pdfYou should now have a new all.pdf file.
Imagine that you have one big PDF file (big.pdf) that is 55 pages long. You would like to split it into 20-page (or fewer) parts.
cd command)pdftk big.pdf cat 1-20 output part-001.pdfpdftk big.pdf cat 21-40 output part-002.pdfpdftk big.pdf cat 41-end output part-003.pdfYou should now have three new PDF files, each containing the pages that you specified in the commandlines.