in reply to Re^2: backticks & job control
in thread backticks & job control

I was in the similar situation some weeks ago, there is a snippet:
my $pid = fork(); if ($pid) { #parent process continues here, $pid contains children pid } else { #child process continues here exec('some_command'); }