in reply to
Backgrounding a Program
Here's one way to do it:
my $pid = fork; exit if ($pid); # Your code here
[download]
Comment on
Re: Backgrounding a Program
Download
Code
In Section
Seekers of Perl Wisdom