Perimus has asked for the wisdom of the Perl Monks concerning the following question:
Is there another way to have the browser-run perl script execute the second script, in the background, and continue without hanging?exec "/home/myuser/www/cgi-bin/foo/bar/import.pl $fn"; system "/home/myuser/www/cgi-bin/foo/bar/import.pl $fn"; exec "/home/myuser/www/cgi-bin/foo/bar/import.pl", $fn; system "/home/myuser/www/cgi-bin/foo/bar/import.pl", $fn;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: system or exec in a web environment
by dave_the_m (Monsignor) on Jun 09, 2004 at 09:11 UTC | |
|
Re: system or exec in a web environment
by Abigail-II (Bishop) on Jun 09, 2004 at 09:12 UTC | |
|
Re: system or exec in a web environment
by rbi (Monk) on Jun 09, 2004 at 09:46 UTC | |
|
Re: system or exec in a web environment
by paulbort (Hermit) on Jun 09, 2004 at 13:58 UTC |