unire pdf tramite automator di Mac con terminale

Joining PDF Files in OS X From the Command Line

In OS X, PDF files can be concatenated manually using Preview. But if you are happy using Terminal there’s an easier way, thanks to a Python script installed by default in /System/Library/Automator

Combining PDF files manually using Preview

Preview allows PDF files to be combined by dragging and dropping, as long as you are careful when do it - or it won’t work.
First of all, open the first PDF file in Preview as per normal. Then drag each of the other PDFs in turn, over the last page thumbnail in the drawer. This is where you need to be careful - you need to drop the document over the thumbnail of the previous document last page, not underneath it. Otherwise Preview will treat them as separate document and won’t merge them. The difference is quite easy to spot - when doing it right Preview will show a border around the thumbnail in the sidebar, instead of a line underneath it - see image below.
How to spot whether Preview will merge PDF documents or treat them as separate filesHow to spot whether Preview will merge PDF documents or treat them as separate filesAlso, if you read “NAME OF YOUR FILE.pdf (1 Document)” in Preview’s title bar, you are good to go, and you can start dragging the next file, until they are all done. Then you need to save the file, perhaps with a new name.
So that works well - slightly laborious but easy for everyone to understand.

Combining PDF files on the command line in OSX

It turns out that from Tiger onwards, OSX ships with a Python script that does exactly what you need. The script is already executable, and Python is pre-installed on OS X, so all you need to do to run it is opening the Terminal and typing

1
"/System/Library/Automator/Combine PDF Pages.action/Contents/Resources/join.py" -o PATH/TO/YOUR/MERGED/FILE.pdf /PATH/TO/ORIGINAL/1.pdf /PATH/TO/ANOTHER/2.pdf /PATH/TO/A/WHOLE/DIR/*.pdf

Benjamin Han recommends setting up a symbolic link to make typing easier. I prefer putting the link in /usr/local/bin, as it is in the $PATH and therefore I can run the command from anywhere. To setup the link, you need to navigate to the directory where you want the link.

1
2
cd /usr/local/bin
sudo ln "/System/Library/Automator/Combine PDF Pages.action/Contents/Resources/join.py" PDFconcat

Terminal will ask you for your password (you need Admin rights to do this). After the command is run, you will be able to concatenate PDF files anywhere on Terminal by typing

1
PDFconcat -o PATH/TO/YOUR/MERGED/FILE.pdf /PATH/TO/ORIGINAL/1.pdf /PATH/TO/ANOTHER/2.pdf /PATH/TO/A/WHOLE/DIR/*.pdf

You can even pass a ‘shuffle’ argument to make the script take one page per document in turn instead:

1
PDFconcat -s -o PATH/TO/YOUR/MERGED/FILE.pdf  /PATH/TO/DIR/*.pdf

Combining PDF files on the command line using ghostscript

Ghostscript is a command line postscript viewer. Preview is able to convert all postscript based format like EPS into PDF, therefore making ghostcript obsolete. However, ghostscript is useful for batch processing text files, including PDF files - and that includes merging them. There is a discussion on how to merge PDF files using ghostscript on Mac OSX Hints.

Commenti

Post popolari in questo blog

Comando SCP

Tutorial: come usare alcuni servizi e la posta di iCloud su Snow Leopard