http://www.perlmonks.org?node_id=380678


in reply to system() vs `backtick`

Try strace -p pid on the child process to see what it's hanging on, and if it's on I/O, use lsof -p pid to see what file/socket etc it's hanging on.

Dave.