Further to marto's reply:   As a basic introduction, see perlintro. Also see the articles in the Getting Started with Perl and Getting Deeper Into Perl sections of the monastery's Tutorials wing. My first thought would be something along the lines of

while (1) { while (process_is_still_going()) { sleep 30; } restart_the_process(); }
(Note that the infinite  while (1) { ... } loop has no way to ever end the program.) See Compound Statements in perlsyn for info on while-loops. See sleep. This loop calls subroutines; see perlsub.

Please try to come up with some code. The closer it is to something we can play with too, the better; see Short, Self-Contained, Correct Example. When you have some code about which you still have questions, please come back and we'll see if we can answer those questions.


Give a man a fish:  <%-{-{-{-<


In reply to Re: process monitoring script by AnomalousMonk
in thread process monitoring script by xtremenet

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.