On Monday, May 23, 2005, 4:16:01 PM, ml wrote:
> Now when I try to
>
> gpg --no-default-keyring --keyring
> /home/sascha/gpg-skript/auto-gpg-keyring.gpg --options /dev/null
> --no-secmem-warning --charset utf-8 --import /my/path/*.asc 
>
> it works for about 500 files - followed by:
>
> [Error "Too many open files"]

Hm, not sure about that error, but you can probably work around it by
doing something like

find /my/path/ -name "*.asc" -exec gpg --no-default-keyring --keyring
/home/sascha/gpg-skript/auto-gpg-keyring.gpg --options /dev/null
--no-secmem-warning --charset utf-8 --import {} \;

That way, gpg is called for each .asc file separately. Might be
slower, I don't know.

Regards,
Mark Kirchner

-- 
_____________________________________________________________
Key (0x19DC86D3): http://www.mark-kirchner.de/keys/key-mk.asc

Attachment: pgpjddKDth3vB.pgp
Description: PGP signature

_______________________________________________
Gnupg-users mailing list
Gnupg-users@gnupg.org
http://lists.gnupg.org/mailman/listinfo/gnupg-users

Reply via email to