in reply to Easy way to capture STDOUT and STDERR without IPC

Since no one has stated the obvious, I'll do so. `cmd 2> stderr.txt` By redirecting the stderr into a text file, you'll be able to read the file after the command finishes in perl and your stdout will be captured by the backticks.