Skip to content

Instantly share code, notes, and snippets.

@vnglst
Last active May 16, 2016 15:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vnglst/55b51bcc7550d10f79631857db936a7e to your computer and use it in GitHub Desktop.
Save vnglst/55b51bcc7550d10f79631857db936a7e to your computer and use it in GitHub Desktop.
OSX script to merge PDF's
function pdf_merge {
join_py="/System/Library/Automator/Combine PDF Pages.action/Contents/Resources/join.py"
read "output_file?Name of output file > "
"$join_py" -o $output_file $@ && open $output_file
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment