Help for this page

Select Code to Download


  1. or download this
    unless (defined ($pid = fork)) 
    {
    ...
    }
    close(FIFO);
    waitpid($pid, 0); #clean up
    
  2. or download this
    
    system "/usr/bin/mkfifo $pipeline/OUT/locateXY";
    ...
    
    system "rm $pipeline/OUT/locateXY"; #to clean up if required