Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re^2: Perl Programmers Don't Die...

by twotone (Beadle)
on Oct 14, 2007 at 05:28 UTC ( [id://644704]=note: print w/replies, xml ) Need Help??


in reply to Re: Perl Programmers Don't Die...
in thread Perl Programmers Don't Die...

:-)

In all of my cgi scripts I use a little custom die subroutine so none of them just die, they die nicely.

sub dienice { print "Content-type: text/html\n\n" unless $header_printed; $header_printed = 1; my(@msg) = @_; print "<h2>Attention:</h2>\n"; print join("<br>\n",@msg); exit; }

Replies are listed 'Best First'.
Re^3: Perl Programmers Don't Die...
by Jenda (Abbot) on Oct 15, 2007 at 22:55 UTC
      I suppose that I should clarify that this isn't for when my scripts die of natural causes, but when I kill them myself, i.e.:
      open ... or &dienice("Can't open: $!");
      Or for viewing troubleshooting data:
      &dienice(@troubleshooting_data);
      Perhaps I should rename the sub killnice, or maybe KillingMeSoftly?

      *Music plays in the background*

      Strumming my pain with his routine
      Singing my life with his code
      Killing me softly with his sub...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://644704]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (6)
As of 2024-04-25 10:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found