81797980f7
URLs automatically rewritten from /search?dist=Foo or /dist/Foo to /dist/Foo/ (note trailing slash). After a 2002(!) reorganization, this is the preferred way to refer to modules on search.cpan.org. This pass brought to you by http://people.freebsd.org/~fenner/fix-search
25 lines
1.1 KiB
Plaintext
25 lines
1.1 KiB
Plaintext
This module provides a simple but complete cron like scheduler. I.e
|
|
this modules can be used for periodically executing Perl subroutines.
|
|
The dates and parameters for the subroutines to be called are
|
|
specified with a format known as crontab entry (see manpage crontab(5)
|
|
or documentation of Schedule::Cron).
|
|
|
|
The philosophy behind Schedule::Cron is to call subroutines
|
|
periodically from within one single Perl program instead of letting
|
|
cron trigger several (possibly different) Perl scripts. Everything
|
|
under one roof. Furthermore Schedule::Cron provides mechanism to
|
|
create crontab entries dynamically, which isn't that easy with cron.
|
|
|
|
Schedule::Cron knows about all extensions (well, at least all
|
|
extensions I'm aware of, i.e those of the so called "Vixie" cron) for
|
|
crontab entries like ranges including 'steps', specification of month
|
|
and days of the week by name or coexistence of lists and ranges in the
|
|
same field. And even a bit more (like lists and ranges with symbolic
|
|
names).
|
|
|
|
Author: Roland Huss <roland@console.de>
|
|
WWW: http://search.cpan.org/dist/Schedule-Cron/
|
|
|
|
-Anton
|
|
<tobez@FreeBSD.org>
|