in reply to Starting a new process (fork?)
Hope this helps.#!/usr/bin/perl -w use strict; use CGI; my $page = new CGI; print $page->header(); print $page->start_html(); my $command = qq(script/that_performs/the/basckup.pl &); system ($command); print qq(Finished); print $page->end_html();
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Starting a new process (fork?)
by DarkBlue (Sexton) on Apr 17, 2001 at 13:50 UTC |