Re: problem executing perl script

2003-02-16 Thread R. Joseph Newton
John Lin wrote: > Hi list, > > I have written a perl CGI script that basically executes a system > command via an open command like so: > > open (COMHANDLE, '/usr/local/bin/gpg --no-tty --list-keys |') or die > "can not list keys \n"; > print ; > close (COMHANDLE) or die "can not close COMHANDLE \

Re: problem executing perl script

2003-02-16 Thread Wiggins d'Anconia
Wiggins d'Anconia wrote: John Lin wrote: As another side note if you are planning on doing anything complex you might want to have a look at the GnuPG::Interface module: http://search.cpan.org/author/FTOBIN/GnuPG-Interface-0.33/lib/GnuPG/Interface.pm http://danconia.org -- To unsubscribe

Re: problem executing perl script

2003-02-16 Thread Wiggins d'Anconia
John Lin wrote: Hi list, I have written a perl CGI script that basically executes a system command via an open command like so: open (COMHANDLE, '/usr/local/bin/gpg --no-tty --list-keys |') or die "can not list keys \n"; print ; close (COMHANDLE) or die "can not close COMHANDLE \n"; For some