in reply to How can I tell at run time that my script is writing to STDERR?

To partially answer myself, for most warnings, saying

use warnings FATAL => 'all';

will have the desired effect. However, this won't kill my program if I issue a warning using 'warn'

  • Comment on Re: How can I tell at run time that my script is writing to STDERR?
  • Download Code