Help for this page

Select Code to Download


  1. or download this
    print "PID before fork: $$\n";
    
    fork && exit;
    
    print "PID after fork: $$\n";
    
  2. or download this
    PID before fork: 21314
    PID after fork: 21315