even when I use die to try to kill it

Well, most likely your code never gets to the die function. Please state what exactly your code prints out, that may give us more clue as which statement caused the script to hang. I have made a guesses nevertheless: the while loop never exists and the execution never reaches the die function.

Another comment I want to make regarding your code is to use strict and use warnings. Have strict variable declarations to prevent Perl from automatically create variables for you. This will make your code easier to trace, and may save you a lot of debugging time in the future. One of the most comment dangers of not using strict pragma in the code is to misspell a variable name, and Perl creates a new variable with the misspelt name, leaving an inexperienced coder hours to figure out what is wrong with the code.


In reply to Re: Script no longer exiting by Roger
in thread Script no longer exiting by SamCG

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.