diff --git a/content/cli/remove-pdf-passoword.md b/content/cli/remove-pdf-passoword.md new file mode 100644 index 0000000..4f37f3e --- /dev/null +++ b/content/cli/remove-pdf-passoword.md @@ -0,0 +1,17 @@ +--- +tags: + - cli + - qpdf + - pdf + - decrypt +--- + +# Remove password from PDFs + +```bash +# Install qpdf +nix-shell -p qpdf + +# Remove password +qpdf --password=YOUR_PASSWORD --decrypt input.pdf output.pdf +```