in reply to backticks fail to capture stderr even with explicit redirection
:/$ perl -e '$alloutput=`cmd 2>&1`; print $alloutput;' :/$ [download]
:/$ perl -e '$alloutput=`cmd 2>&1;`; print $alloutput;' sh: cmd: command not found :/$ [download]