Help for this page

Select Code to Download


  1. or download this
    use CGI ':standard';
    
    my $pid = fork;
    ...
        end_html;
    }
    else { die "Fork failed: $!\n"; }   # something went wrong
    
  2. or download this
    fork==0 and exec 'backupprogram';
    print header,start_html,'etc...'