Last active
July 10, 2023 11:27
-
-
Save okvv/56e4c5f1f72ccd664733bbf429ddd1a2 to your computer and use it in GitHub Desktop.
bash script to bulk remove password from (pdf) files in current directory using qpdf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
for f in * | |
do qpdf --password=THE_PASSWORD --decrypt --replace-input $f; | |
done | |
# brew install qpdf | |
# for executable file run: chmod u+x decrypt-pdf.sh | |
# merge files into one PDF: `qpdf --empty --pages *.pdf -- out.pdf` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment