in reply to Re^4: replace use HTTP::Lite to run a perl file that was on another server
in thread replace use HTTP::Lite to run a perl file that was on another server
I would recommend the 3 argument form of open instead:
open(CGI, '-|', $cgi) or die "Can't exec $cgi, $!";
as it is generally safer.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: replace use HTTP::Lite to run a perl file that was on another server
by kcott (Archbishop) on Feb 21, 2017 at 06:49 UTC | |
by RonW (Parson) on Feb 21, 2017 at 19:03 UTC |