so if this is not clear... what i mean
this script writes once file after once.
while($pid = fork)
{
$i++;
print "$i\t$pid\n";
open($i, ">$pid.txt");
for($c=0;$c<=1000000;$c++)
{
print $i "$c\n";
}
close($i);
if($i == 4) { last; }
}
exit;
but i want it simultan. Is it possible ?
_______________________________________________
Perl-Win32-Web mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-web
- child processes Kristofer Wolff
- Kristofer Wolff
