in reply to Long running task from web app
The simplest mechanism is
if( $^O eq 'MSWin32' ) { system 1, 'path/to/script.pl'; } else { ## assume some flavour of *nix system '/path/to/script.pl &'; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Long running task from web app
by astroboy (Chaplain) on Mar 04, 2006 at 22:34 UTC | |
by BrowserUk (Patriarch) on Mar 04, 2006 at 22:55 UTC |