Merge pdfs sequentially

Solution 1:

This can be done using a macOS default built-in, from either the command line or its GUI app the action belongs to.

To do as you requested from the command line, in Terminal, use the following command example:

"/System/Library/Automator/Combine PDF Pages.action/Contents/Resources/join.py" --shuffle -o /path/to/collated.pdf /path/to/file1.pdf /path/to/file2.pdf /path/to/file3.pdf /path/to/file4.pdf

To make the macOS built-in join.py script easier to use from the command line, I'd suggest you make a symbolic link for it. As an example, if you have /usr/local/bin in your PATH:

sudo ln -s "/System/Library/Automator/Combine PDF Pages.action/Contents/Resources/join.py" "/usr/local/bin/pdfjoin"

Afterwards, you can start the command with just pdfjoin instead of using its fully qualified pathname.


Below is a image of an Automator workflow to show an example of how it can be achieved using a macOS default built-in GUI app. Note that it can be modified many different ways to suit one's needs/wants.

enter image description here

Note: The Combine PDF Pages action, when used in Automator creates a temp file and why additional actions are needed to refine the workflow. You could just use the Open Finder Items action directly after and forgo the other actions, but of course you'll need to then manually save the opened new pdf file elsewhere.

Solution 2:

I do this in preview:

Open the first one,

Select the others,

With the sidebar « thumbnails » visible, just drag and drop into the sidebar.

Check order but usually they go in by name order...

How I create my exams...

Each one is one page, created in excel with headers and page numbers exported as pdf...