Mailing List Archive

batch decryption
Hello,

How does one decrypt a group of files using gnupg?

something along the lines of

gpg -d *.gpg

I have searched the manual and man pages without any luck, but perhaps
I have overlooked something.

Any help in finding an answer would be greatly appreciated.

Thanks,
Ben Zeckel
bzeckel@hmc.edu
Re: batch decryption [ In reply to ]
> How does one decrypt a group of files using gnupg?
> something along the lines of
> gpg -d *.gpg
>
> I have searched the manual and man pages without any luck, but perhaps
> I have overlooked something.

for X in *.gpg; do gpg -d $X; done

--
David Pick