Is there a simple way to time out a backquoted program? After about 10 seconds I'd like to move on from the backquotes to the nextline. If this can be done, is any of the output from the running program returned? Does the program terminate or continue running until the perl script ends?
`perl -e 'while(1){};'`;
print "never see this text\n";