in reply to Re: Executing program with arguments from cgi script
in thread Executing program with arguments from cgi script

It's possible to obtain the STDOUT, STDERR of the system command simply by my $out = `$order`;

backticks only capture STDOUT unless you do 2>&1

  • Comment on Re^2: Executing program with arguments from cgi script

Replies are listed 'Best First'.
Re^3: Executing program with arguments from cgi script
by bliako (Abbot) on Jan 25, 2021 at 10:44 UTC

    thanks, I haven't paid attention to this important detail.