If you're on a *NIX box, take a look at cron (man cron)...
NAME cron - clock daemon SYNOPSIS /usr/sbin/cron DESCRIPTION The cron command starts a process that executes commands at specified dates and times. Regularly scheduled commands can be specified according to instructions found in crontab files in the directory /var/spool/cron/crontabs. Users can submit their own crontab file using the crontab(1) command. Commands which are to be executed only once may be submitted using the at(1) command.
I'm sure there is a similar function under Win32, but unfortunately I have no idea what it would be. Something I've found useful for reloading scripts while they're still running (it leaves zombie processes, but it works for a quick hack. If anyone can suggest something better, I'd be interested in knowing!)
if ($cmd eq 'reload') { my $child = fork (); if ($child) { print "Reloading...\n"; exec ('perl script.pl'); exit 1; } else { exit 1; } }
And if you're interested in reloading libraries, you may want to take a look at this node.

Hope it helps somewhat.

scott.

Edited: added line about reloading libraries.

In reply to Re: Reloading by sschneid
in thread Reloading by Anonymous Monk

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.