Skip to content

Instantly share code, notes, and snippets.

@amirnissim
Last active August 29, 2015 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save amirnissim/10357975 to your computer and use it in GitHub Desktop.
Save amirnissim/10357975 to your computer and use it in GitHub Desktop.
create a single decrypted file from multiple encrypted pdf files
brew install qpdf
# first decrypt
find . -name '*.pdf' | xargs basename | xargs -L1 -I {} qpdf --decrypt --password=PASSWORD {} dec{}
# then merge
qpdf --empty --pages dec*.pdf -- all.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment