in reply to call a Perl script from another Perl script, server-side, with parameters

In case script.pl is using CGI module, you can use call from command line to set proper params - note the space between script name and query string:
system("perl /path/to/scipt.pl ?parameter=xyz");
-- Roman
  • Comment on Re: call a Perl script from another Perl script, server-side, with parameters
  • Download Code