in reply to launching perl processes from a perl script on Win2K
The following example shows this in action. The main script starts a number of other scripts which run simultaneously. The command also uses wperl.exe which is perl without a command window.
#! /usr/bin/perl -w use strict; use warnings; foreach (1..5) { system (qq(start wperl.exe -e "sleep($_);print 'Done!'")); } print "Launching application has finished\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: launching perl processes from a perl script on Win2K
by dwhite20899 (Friar) on Oct 14, 2004 at 14:43 UTC |