tech  

new perl

Marc Espie
Mon, 04 Oct 2010 06:49:07 -0700

if you run into "fishy" perl scripts, newer perl includes (as standard)
autodie.

a simple
use autodie;

and at least, stupid stuff that NEVER CHECKS error returns from open() and
the like will die, die, die instead of struggling onwards...

  • new perl Marc Espie