Help for this page

Select Code to Download


  1. or download this
    my $cmd = "pgp -f -ea +batchmode publickey.pgp >SampleData.txt.asc";
    open my $pgp, "| $cmd"
        or die "Couldn't run [$cmd]: $!";
    print $pgp "Hello World";
    close $pgp;