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 \
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
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