|
Posted by Uri Guttman on March 15, 2007, 9:17 pm
Please log in for more thread options
N> my $count =0;
N> print localtime () . ": Hello from the parent ($$)!\n";
N> for ($count = 10; $count <= 100; $count = i+10) {
N> my $pid = fork;
N> die "Fork failed: $!" unless defined $pid;
N> unless ($pid) {
N> print localtime () . ": Hello from the child ($$)!\n";
why are you posting this to clp.modules? there are no module related
things in your code. repost it to c.l.p.misc or perl.beginners
uri
--
Uri Guttman ------ uri@stemsystems.com -------- http://www.stemsystems.com --Perl Consulting, Stem Development, Systems Architecture, Design and Coding-
Search or Offer Perl Jobs ---------------------------- http://jobs.perl.org
|