-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Lance W. Haverkamp wrote:
> Having looked through much documentation & some trial and error; it
> seems there is no way to sign (detached) multiple files. I need to sign
> dozens (or hundreds) of photos at a time. I am *not* a programmer.
>
> I di
Having looked through much documentation & some trial and error; it
seems there is no way to sign (detached) multiple files. I need to sign
dozens (or hundreds) of photos at a time. I am *not* a programmer.
I did coble together a (Linux) script:
#!/bin/bash
for i in $( ls ); do
gpg -b $i
don