in reply to Re^2: How to redirect the output of system call
in thread How to redirect the output of system call

my $oput=`$command` waits for $command to finish. It seems that you don't want this, so you need to start it in the background. Probably not with `...`.

There are quite some suggestions in the previous threads as well as in the article by merlyn I linked in this thread. Go read about them, and try to fix it.