Jeff 'japhy' Pinyan wrote:
On Sep 13, Tony Frasketi said:
my($filename) = "/home/blahblah/cgi-bin/ifgen/ifgen.cgi
my($command) = "/usr/bin/perl -c $filename";
print "command[$command]";
my(@results) = `$command`;
'perl -c' sends its output to STDERR, not STDOUT. To catch
On Sep 13, Tony Frasketi said:
my($filename) = "/home/blahblah/cgi-bin/ifgen/ifgen.cgi
my($command) = "/usr/bin/perl -c $filename";
print "command[$command]";
my(@results) = `$command`;
'perl -c' sends its output to STDERR, not STDOUT. To catch that, I would
suggest using the