bin-extra/pdf-encrypt

9 lines
175 B
Plaintext
Raw Normal View History

2023-07-03 17:10:06 +02:00
#!/usr/bin/env bash
password=$(pass thomas/key/pdf)
for i in $@; do
echo >&2 "Encrypting $i"
qpdf --encrypt "$password" "$password" 256 -- "$i" --replace-input
done