in reply to Re: Running a process in the background
in thread Running a process in the background
I am calling start from a perl script:
my $output = `start /b perl test1.pl > testing.log`; test2();
So basically I want test2() to run when test1.pl is executed in the background. But what really is happenning is that test1.pl completes its own commands and then test2() is executed.
How can I make them run simulataneously? Thanks.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Running a process in the background
by bart (Canon) on Nov 24, 2004 at 00:47 UTC | |
by Xenofur (Monk) on Oct 01, 2008 at 13:13 UTC | |
by bart (Canon) on Oct 01, 2008 at 15:31 UTC | |
by Anonymous Monk on Nov 24, 2004 at 17:15 UTC |