my $pid = fork(); if ($pid == 0) { # child process my $exit = system("whatever command you want"); if ($exit != 0) { # handle error } exit; } # rest of the program that isn't waiting on the 'system' . . .