in reply to Re: How to do system calls in cgi programs
in thread How to do system calls in cgi programs
sub runReports { print "Generating Reports for $script_to_call\n"; my $exit_val = system($script_to_call); if ( $exit_val ) { print "<p>System call failed with an exit value $exit_val\n"; print "<p>Let's see what a backtic exec shows us\n"; print '<pre>', `$script_to_call`, '</pre>'; } else { print "<p>Look for reports in /home/donfox/BioDataProject/kim/Re +ports"; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: How to do system calls in cgi programs
by poj (Abbot) on Jan 04, 2003 at 17:33 UTC | |
|
Re: Re: Re: How to do system calls in cgi programs
by vek (Prior) on Jan 04, 2003 at 18:21 UTC |