batch decryption

David Pick D.M.Pick@qmw.ac.uk
Fri, 17 Mar 2000 13:22:55 +0000



> 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