|
|
| more useful options | |
| PerlMonks |
Re: Perl / Apache 2 / Alarmsby pileofrogs (Priest) |
| on Dec 28, 2011 at 22:34 UTC ( #945428=note: print w/ replies, xml ) | Need Help?? |
|
Let me see if I understand correctly: You have a script that you want to launch some other scripts, then have it wait around a bit and then exit, right? You need to fork off those other processes. The easy way to do that in unix is to stick a '&' at the end of the command. Using fork() and exec() is also a popular combination.
unix example:
fork & exec example
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||||||