my $command = "turtle.exe"; if ($^O =~ /win/i) { $command = "start /b $command" } else { $command = "$command &" } my $ret = system($command);