Help for this page

Select Code to Download


  1. or download this
    open(my $pipe, "plink /usr/bin/perl </some/local/script.pl |")
        or die "unable to run command: $!";
    ...
    while (<$pipe>) {
      print "response: $_";
    }