You can do this using an Automator workflow. It's a bit more complex than most, so be careful when implementing it.
This post contains two versions: One is shorter and stores the output as Processed PDF File.pdf on the desktop, the other longer and stores the file as (Edited)InputFileName.pdf in the same directory. The steps required for the longer version only are marked (optional).
Open Automator and select to create a new Service that receives PDF files as input in Any application.
- (optional) Add a Set Value of Variable action and name the variable
FilePath.
(optional) Add a Run AppleScript action and use the following script code to get the folder name the file is located in:
on run {input, parameters}
tell application "Finder" to return (container of first item of input) as alias
end run
(optional) Add a Set Value of Variable action and name the variable Folder.
- (optional) Add a Get Value of Variable action and return the variable
FilePath. Ignore this action's input in its Options.
(optional) Add a Run Shell Script action and pass input as arguments. Use the following script to extract the basename of the file:
echo "$( basename "$1" )"
(optional) Add a Set Value of Variable action and name the variable FileName.
(optional) Add a Get Value of Variable action and name the variable FilePath. Ignore this action's input in its Options.
Add a PDF to Images action, saving output to Desktop or any folder that can hold temporary files. Name them however you want.
- Add a Set Value of Variable action, so we know later which temporary files to delete. Name the variable
TempFiles.
Add a Run AppleScript action, and use the following script code to filter the list of temporary files (this is where we remove the first page):
on run {input, parameters}
return rest of input
end run
Add a Combine PDF pages action to put the pieces together again, by appending pages.
- Use the Move Finder Items action to move the resulting file (the recombined PDF) to the Desktop, or any folder where you want them. If you decided to compute the input file's parent folder, this is where you drag & drop a reference to the
Folder variable.
- The Rename Finder Items action can give these files a better file name than e.g.
zOpY3O.pdf, which is the automatically assigned file name for the combined PDF file. Use e.g. Name Single Item and give it a basename of Processed PDF File. If you opted to use the longer variant, drag FileName from the variables list to the text field, and add (Edited) just before it. Now we're basically done, just need to clean up.
- Add the Get Value of Variable action and get the value of
TempFiles. Ignore this action's input in its Options.
- Add a Move Finder Items to Trash action to remove the temporary single page files.
Here's a screenshot of the finished longer version of the workflow:

Delete(Backspace). So if it's not too many files, that is probably the easiest solution. – Daniel Beck Feb 2 at 12:07