bin-extra/pdf-encrypt

9 lines
175 B
Bash
Executable File

#!/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