Skip to content

Instantly share code, notes, and snippets.

@morsdyce
Forked from okvv/decrypt-pdf.sh
Created July 10, 2023 08:40
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 morsdyce/d705257c3005d6fc3fdfb678cefa6145 to your computer and use it in GitHub Desktop.
Save morsdyce/d705257c3005d6fc3fdfb678cefa6145 to your computer and use it in GitHub Desktop.
bash script to bulk remove password from (pdf) files in current directory using qpdf
#!/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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment