greymoose has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -w use CGI qw(:standard); use CGI::Carp qw(warningsToBrowser fatalsToBrowser); use strict; print header; print start_html; system("/cgi/empty.cgi")== 0 or die "system failed: $?"; print end_html;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Problems getting system call to work
by friedo (Prior) on Nov 18, 2006 at 05:21 UTC | |
by greymoose (Beadle) on Nov 18, 2006 at 06:00 UTC | |
by ikegami (Patriarch) on Nov 18, 2006 at 06:58 UTC |