in reply to RE: RE: RE: Easy, elemental, but cool debug trick.
in thread Easy, elemental, but cool debug trick.

For the final interation, leave the DEBUG blocks always commented out. When you need to debug, simply try this:
perl -e 's/^#(.*)$/$1/ if /\bDEBUG\b/../\bENDDEBUG\b/' foo.pl | perl
and eliminate the intermediate file. Actually, more likely to reduce the odds I will ship code with the debug blocks still enabled :)

mikfire