Help for this page

Select Code to Download


  1. or download this
    
    -> parent executes count
    ...
              -> grandchild executes end of script
              <- grandchild exits
    
  2. or download this
    
    my $PID = fork();
    ...
        # in the child process
    }
    
  3. or download this
    #!/usr/bin/perl
    
    ...
    }
    print "Parent Script Finished!\n";