Question
Is error checking from `` possible?
When I run a command like:
local $value = `fake_program_name`
I get nothing back in $value, $main::sh_status is set to 0. $sh_status is empty. $main::ERROR is empty. Is there any way to actually check to see an error?
(fake_program_name doesn't exist, which seems like a way to generate a pretty obvious error)

