* How do I start a process in the background? + mentioned several of the modules to do this
Index: perlfaq8.pod =================================================================== RCS file: /cvs/public/perlfaq/perlfaq8.pod,v retrieving revision 1.12 diff -u -d -r1.12 perlfaq8.pod --- perlfaq8.pod 25 Aug 2002 20:10:29 -0000 1.12 +++ perlfaq8.pod 30 Sep 2002 08:46:35 -0000 @@ -346,7 +346,12 @@ =head2 How do I start a process in the background? -You could use +Several modules can start other processes that do not block +your Perl program. You can use IPC::Open3, Parallel::Jobs, +IPC::Run, and some of the POE modules. See CPAN for more +details. + +You could also use system("cmd &")