How to recurse encrypt files

Anthony E. Greene agreene@pobox.com
Wed Jan 16 22:00:02 2002


On Wed, 16 Jan 2002, Dominik Schwald wrote:
>Am Dienstag, 15. Januar 2002 21:08 schrieb Bob Metelsky:
>> How can I encrypt all files in a directory? Im not sure how the file
>> names woould be recreated but possibley  just changing the file
>> extension
>
>Here's the script:
>
>for i in *; do gpg -er RECIPIENT -o `echo $i`.gpg `echo $i`; done

I think he's using a DOS batch file.