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


in reply to Re^2: Calling external commands through my script
in thread Calling external commands through my script

system is a good solution if the program should be blocking, you have no need to interact with STDIN/STDOUT/STDERR, and you don't need to worry about a timeout. Be aware that any STDOUT or STDERR the program generates will just get tacked onto your perl IO channels.

I'd recommend using a list-based call to avoid escaping complications (e.g. system($executable, @args);) but again, that's generic advice.


#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.