logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Config::Crontab - Read/Write Vixie compatible crontab(5) files

Acknowledgements

       •   Juan Jose Natera Abreu (naterajj@yahoo.com) for unsafe POSIX::tmpnam alert; now using File::Temp.

Author

       Scott Wiersdorf, <scott@perlcode.org>

Caveats

       •   Thanks to alert reader "Kirk" (no lastname given), we learn that  some  versions  of  Debian  linux's
           "crontab  -l"  does  not  strip  the  internal crontab(1) comments (e.g., "DO NOT EDIT THIS FILE" and
           subsequent meta-data) at the start of user crontabs.

           This means that if you use Config::Crontab to edit a user's crontab file, those three headers will be
           added to the Config::Crontab object, and written back out again, and  crontab(1)  will  add  its  own
           comments, effectively adding 3 comment lines each time you edit the crontab.

           You may use this little heuristic as a starting point for stripping those comments:

               my $ct = new Config::Crontab;
               $ct->read;

               ## make "crontab -l | crontab -" idempotent for Debian
               for my $line ( grep { defined } ($ct->select(-type => 'comment'))[0..2] ) {
                   if( $line->data =~ qr(^# (?:DO NOT EDIT|[\(]\S+ installed|[\(]Cron version)) ) {
                       $ct->remove($line);
                   }
               }

               ...

               $ct->write;

       •   As   of   version  1.05,  Config::Crontab  supports  the  user  field  (with  optional  ':group'  and
           '/<login-class>') via the -system initialization parameter, systemEvent method, or userEvent method
           and Event initialization parameter.

       •   You will not get good results adding non-Block objects to a Crontab object directly:

               $ct->last( new Config::Crontab::Event(-data => '1 2 3 4 5 /bin/friday') );

           This doesn't do anything (and shouldn't). You should be adding Block objects to  the  Crontab  object
           instead:

               $block->last(new Config::Crontab::Event(-data => '1 2 3 4 5 /bin/friday'));
               $ct->last($block);

           or the slightly more economical:

               $ct->last( new Config::Crontab::Block(-data => '1 2 3 4 5 /bin/friday') );

           This  is  nice since the Block constructor parses its -data parameter as raw data and creates all the
           necessary objects to populate itself. The downside of this last approach is  that  you  don't  get  a
           handle  to  your  block  if  you  need to make later changes. It can be easily got, however, since we
           appended it to the end (using last) of the Crontab object:

               $block = ($ct->blocks)[-1];

Description

Config::Crontab provides an object-oriented interface to Vixie-style crontab(5) files for Perl.

       A Config::Crontab object allows you to manipulate an ordered set of Event, Env, or Comment objects (also
       included with this package). Descriptions of these packages may be found below.

       In short, Config::Crontab reads and writes crontab(5) files (and does a little pretty-printing too) using
       objects. The general idea is that you create a Config::Crontab object and associate it with a file (if
       unassociated, it will work over a pipe to "crontab -l"). From there, you can add lines to your crontab
       object, change existing line attributes, and write everything back to file.

       •   NOTE: Config::Crontab does not (currently) do validity checks on your data (i.e., dates out of range,
           etc.).  However,  if the call to crontab fails when you invoke write, write will return undef and set
           error with the error message returned from the crontab command. Future development  may  tend  toward
           more validity checks.

       Now, to successfully navigate the module's ins and outs, we'll need a little terminology lesson.

   TerminologyConfig::Crontab (hereafter simply Crontab) sees a "crontab" file in terms of blocks. A block is simply an
       ordered  set  of  one or more lines. Blocks are separated by two or more newlines. For example, here is a
       crontab file with two blocks:

           ## a comment
           30 4 * * * /bin/some_command

           ## another comment
           ENV=some_value
           50 9 * * 1-5 /bin/reminder --meeting=friday

       The first block contains two Config::Crontab::* objects: a Comment object and an Event object. The second
       block contains an Env object in addition to a Comment object and an  Event  object.  The  Config::Crontab
       class,  then,  consists  of  zero  or more Config::Crontab::Block objects. Block objects have these three
       basic elements:

       Config::Crontab::Event
           Any lines in a crontab that look like these are Event objects:

               5 10 * * * /some/command
               @reboot /bin/mystartup.sh
               ## 0 0 * * Fri /disabled/command

           Notice that commented out event lines are still considered Event objects.

           Event objects are described below in the Event package description. Please refer to it for details on
           manipulating Event objects.

       Config::Crontab::Env
           Any lines in a crontab that look like these are Env objects:

               MAILTO=joe
               SOMEVAR = some_value
               #DISABLED=env_setting

           Notice that commented out environment lines are still considered Env objects.

           Env objects are described below in the Env package description.  Please refer to it  for  details  on
           manipulating Env objects.

       Config::Crontab::Comment
           Any  lines  containing only whitespace or lines beginning with a pound sign (but are not Event or Env
           objects) are Comment objects:

               ## this is a comment
               (imagine somewhitespace here)

           Comment objects are described below in the Comment  package  description.  Please  refer  to  it  for
           details on manipulating Comment objects.

   Illustration
       Here is a simple crontab file:

         MAILTO=joe@schmoe.org

         ## send reminder in April
         3 10 * Apr Fri  joe  echo "Friday a.m. in April"

       The  file  consists  of  an environment variable setting (MAILTO), a comment, and a command to run. After
       parsing the above file, Config::Crontab would break it up into the following objects:

           +---------------------------------------------------------+
           |     Config::Crontab object                              |
           |                                                         |
           |  +---------------------------------------------------+  |
           |  |      Config::Crontab::Block object                |  |
           |  |                                                   |  |
           |  |  +---------------------------------------------+  |  |
           |  |  |       Config::Crontab::Env object           |  |  |
           |  |  |                                             |  |  |
           |  |  |  -name => MAILTO                            |  |  |
           |  |  |  -value => joe@schmoe.org                   |  |  |
           |  |  |  -data => MAILTO=joe@schmoe.org             |  |  |
           |  |  +---------------------------------------------+  |  |
           |  +---------------------------------------------------+  |
           |                                                         |
           |  +---------------------------------------------------+  |
           |  |      Config::Crontab::Block object                |  |
           |  |                                                   |  |
           |  |  +---------------------------------------------+  |  |
           |  |  |       Config::Crontab::Comment object       |  |  |
           |  |  |                                             |  |  |
           |  |  |  -data => ## send reminder in April         |  |  |
           |  |  +---------------------------------------------+  |  |
           |  |                                                   |  |
           |  |  +---------------------------------------------+  |  |
           |  |  |       Config::Crontab::Event Object         |  |  |
           |  |  |                                             |  |  |
           |  |  |  -datetime => 3 10 * Apr Fri                |  |  |
           |  |  |  -special => (empty)                        |  |  |
           |  |  |  -minute => 3                               |  |  |
           |  |  |  -hour => 10                                |  |  |
           |  |  |  -dom => *                                  |  |  |
           |  |  |  -month => Apr                              |  |  |
           |  |  |  -dow => Fri                                |  |  |
           |  |  |  -user => joe                               |  |  |
           |  |  |  -command => echo "Friday a.m. in April"    |  |  |
           |  |  +---------------------------------------------+  |  |
           |  +---------------------------------------------------+  |
           +---------------------------------------------------------+

       You'll notice the main Config::Crontab object encapsulates the entire file. The parser  found  two  Block
       objects:  the  lone MAILTO variable setting, and the comment and command (together). Two or more newlines
       together in a crontab file constitute a block separator. This allows you to logically group commands  (as
       most people do anyway) in the crontab file, and work with them as a Config::Crontab::Block objects.

       The second block consists of a Comment object and an Event object, shown are some of the data methods you
       can use to get or set data in those objects.

   PracticalUsage:ABriefTutorial
       Now  that  we  know  what  Config::Crontab objects look like and what they're called, let's play around a
       little.

       Let's say we have an existing crontab on many machines that we want to manage.  The crontab contains some
       machine-dependent information (e.g., timezone, etc.), so we can't just copy a  file  out  everywhere  and
       replace  the existing crontab. We need to edit each crontab individually, specifically, we need to change
       the time when a particular job runs:

           30 2 * * * /usr/local/sbin/pirate --arg=matey

       to 3:30 am because of daylight saving time (i.e., we don't want this job to run twice).

       We can do something like this:

           use Config::Crontab;

           my $ct = new Config::Crontab;
           $ct->read;

           my ($event) = $ct->select(-command_re => 'pirate --arg=matey');
           $event->hour(3);

           $ct->write;

       All done! This shows us a couple of subtle but important points:

       •   The Config::Crontab object must have its read method invoked for it to read the crontab file.

       •   The select method returns a list, even if there is only one item  to  return.  This  is  why  we  put
           parentheses  around  $event  (otherwise  we  would  be putting the return value of select into scalar
           context and we would get the number of items in the list instead of the list itself).

       •   The set methods for Event (and other) objects are usually invoked the same way as  their  get  method
           except with an argument.

       •   We must write the crontab back out to file with the write method.

       Here's how we might do the same thing in a one-line Perl program:

           perl -MConfig::Crontab -e '$ct=new Config::Crontab; $ct->read; \
           ($ct->select(-command_re=>"pirate --arg=matey"))[0]->hour(3); \
           $ct->write'

       Nice! Ok. Now we need to add a new crontab entry:

           35 6 * * * /bin/alarmclock --ring

       We can do it like this:

           $event = new Config::Crontab::Event( -minute  => 36,
                                                -hour    => 6,
                                                -command => '/bin/alarmclock --ring');
           $block = new Config::Crontab::Block;
           $block->last($event);
           $ct->last($block);

       or like this:

           $event = new Config::Crontab::Event( -data => '35 6 * * * /bin/alarmclock --ring' );
           $ct->last(new Config::Crontab::Block( -lines => [$event] ));

       or like this:

           $ct->last(new Config::Crontab::Block(-data => "35 6 * * * /bin/alarmclock --ring"));

       We learn the following things from this example:

       •   Only  Block  objects  can be added to Crontab objects (see "CAVEATS"). Block objects may be added via
           the last method (and several other methods, including first, up, down, before, and after).

       •   Block objects can be populated in a variety of ways, including the -data attribute  (a  string  which
           may--and  frequently  does--span  multiple  lines via a 'here' document), the -lines attribute (which
           takes a list reference), and the last method. In addition to the last method, Block objects  use  the
           same  methods  for  adding  and  moving  objects that the Crontab object does: first, last, up, down,
           before, and after.

       After the ModuleUtility section, the remainder of this document is a reference manual and describes  the
       methods   available   (and   how   to   use   them)   in   each   of   the  5  classes:  Config::Crontab,
       Config::Crontab::Block, Config::Crontab::Event, Config::Crontab::Env, and  Config::Crontab::Comment.  The
       reader  is  also  encouraged  to  look  at  the  example CGI script in the eg directory and the (somewhat
       contrived) examples in the t (testing) directory with this distribution.

   ModuleUtilityConfig::Crontab is a useful module by virtue of the "one-liner" test. A useful module must do useful work
       (editing crontabs is useful work) economically (i.e., useful work must be able to be  done  on  a  single
       command-line that doesn't wrap more than twice and can be understood by an adept Perl programmer).

       Graham Barr's Net::POP3 module (actually, most of Graham's work falls in this category) is a good example
       of a useful module.

       So, with no more ado, here are some useful one-liners with Config::Crontab:

       •   uncomment all crontab events whose command contains the string 'fetchmail'

             perl -MConfig::Crontab -e '$c=new Config::Crontab; $c->read; \
             $_->active(1) for $c->select(-command_re => "fetchmail"); $c->write'

       •   remove the first crontab block that has '/bin/unwanted' as a command

             perl -MConfig::Crontab -e '$c=new Config::Crontab; $c->read; \
             $c->remove($c->block($c->select(-command_re => "/bin/unwanted"))); \
             $c->write'

       •   reschedule the backups to run just Monday thru Friday:

             perl -MConfig::Crontab -e '$c=new Config::Crontab; $c->read; \
             $_->dow("1-5") for $c->select(-command_re => "/sbin/backup"); $c->write'

       •   reschedule the backups to run weekends too:

             perl -MConfig::Crontab -e '$c=new Config::Crontab; $c->read; \
             $_->dow("*") for $c->select(-command_re => "/sbin/backup"); $c->write'

       •   change all 'MAILTO' environment settings in this crontab to 'joe@schmoe.org':

             perl -MConfig::Crontab -e '$c=new Config::Crontab; $c->read; \
             $_->value(q!joe@schmoe.org!) for $c->select(-name => "MAILTO"); $c->write'

       •   strip all comments from a crontab:

             perl -MConfig::Crontab -e '$c=new Config::Crontab; $c->read; \
             $c->remove($c->select(-type => "comment")); $c->write'

       •   disable an entire block of commands (the block that has the word 'Friday' in it):

             perl -MConfig::Crontab -e '$c=new Config::Crontab; $c->read; \
             $c->block($c->select(-data_re => "Friday"))->active(0); $c->write'

       •   copy one user's crontab to another user:

             perl -MConfig::Crontab -e '$c = new Config::Crontab(-owner => "joe"); \
             $c->read; $c->owner("mike"); $c->write'

Methods

new([%args])
       Creates a new Comment object. You may create Comment objects in any of the following ways:

       Empty
               $comment = new Config::Crontab::Comment;

       Populated
               $comment = new Config::Crontab::Comment( -data => '# this is a comment' );

           and an alternative:

               $comment = new Config::Crontab::Comment( '# this is a constructor shortcut' );

       Constructor attributes available in the new method take the same arguments as their  method  counterparts
       (described  below),  except  that  the  names of the attributes must have a hyphen ('-') prepended to the
       attribute name (e.g., 'data' becomes '-data'). The following is a list of attributes available to the new
       method:

       -data

       Each of these attributes corresponds directly to its similarly-named method.

       Examples:

           ## using data
           $comment = new Config::Crontab::Comment( -data => '## a nice comment' );

           ## using data method
           $comment = new Config::Crontab::Comment;
           $comment->data('## hi Mom!');

       If bogus data is passed to the constructor, it will return undef instead of an object reference. If there
       is a possiblility of poorly formatted data going into  the  constructor,  you  should  check  the  object
       variable for definedness before using it.

       As a shortcut, you may omit the -data label and simply pass the comment itself:

           $comment = new Config::Crontab::Comment('## this space for rent or lease');

   data([string])
       Get or set a comment.

       Example:

           $comment->data('## this is not the comment you are looking for');

   dump
       Returns  a formatted string of the Comment object. This method is called implicitly when flushing to disk
       in Config::Crontab. It is not newline terminated.

Name

       Config::Crontab - Read/Write Vixie compatible crontab(5) files

Package Config::Crontab

       This section describes Config::Crontab objects (hereafter simply Crontab objects). A Crontab object is an
       abstracted  way  of dealing with an entire crontab(5) file. The Crontab class has methods to allow you to
       select, add, or remove Block objects as well as read and parse crontab files and write crontab files.

   init([%args])
       This method is called implicitly when you instantiate an object via new. init takes the same arguments as
       new and read. If the -file argument is specified (and is non-false), init will invoke read  automatically
       with the -file value. Use init to re-initialize an object.

       Example:

           ## auto-parses foo.txt in implicit call to init
           $ct = new Config::Crontab( -file => 'foo.txt' );

           ## re-initialize the object with default values and a new file
           $ct->init( -file => 'bar.txt' );

   strict([boolean])strict enforces the following constraints:

       •   if  the file specified by the file method (or -file attribute in new) does not exist at the time read
           is invoked, read sets error and dies: "Could not open (filename): (reason)".  If strict is  disabled,
           read returns undef (error is set).

       •   If  the  file  specified  by the file method (or -file attribute in new) cannot be written to, or the
           "crontab" command fails, write sets error and warns: "Could not open (filename): (reason)". If strict
           is disabled, write returns undef (error is set).

       •   Croaks if an illegal username is specified in the -owner parameter.

       Examples:

           ## disable strict (default)
           $ct->strict(0);

   system([boolean])system tells config::crontab to assume that  the  crontab  object  is  after  the  pattern  described  in
       crontab(5) with an extra user field before the command field:

         @reboot     joeuser    /usr/local/bin/fetchmail -d 300

       where the given command will be executed by said user. when a crontab file (e.g., /etc/crontab) is parsed
       without  system  enabled, the user field will be lumped in with the command. When enabled, the user field
       will be accessible in each event object via the user  method  (see  "user"  in  the  event  documentation
       below).

   owner([string])owner  sets  the  owner  of  the  crontab.  If you're running Config::Crontab as a privileged user (e.g.,
       "root"), you can read and write user crontabs by specifying owner either in the constructor, during init,
       or using owner before a read or write method is called:

         $c = new Config::Crontab( -owner => 'joe' );
         $c->read;  ## reading joe's crontab

       Or another way:

         $c = new Config::Crontab;
         $c->owner('joe');
         $c->read;  ## reading joe's crontab

       You can use this to copy a crontab from one user to another:

         $c->owner('joe');
         $c->read;
         $c->owner('bob');
         $c->write;

   owner_re([regex])Config::Crontab is strict in what it will allow for a username,  since  this  information  internally  is
       passed  to a shell. If the username specified is not a user on the system, Config::Crontab will set error
       with "Illegal username" and return undef; if strict mode is enabled, Config::Crontab will croak with  the
       same error.

       Further, once the username is determined valid, the username is then checked against a regular expression
       to thwart null string attacks and other maliciousness. The default regular expression used to check for a
       safe username is:

           /[^a-zA-Z0-9\._-]/

       If  the  pattern  matches  (i.e.,  if  any characters other than the ones above are found in the supplied
       username), Config::Crontab will set error with "Illegal username" and return undef.  If  strict  mode  is
       enabled, Config::Crontab will croak with the same error.

         $c->owner_re('[^a-zA-Z0-9_\.-#]');  ## allow # in usernames

   read([%args])
       Parses the crontab file specified by file. If file is not set (or is false in some way), the crontab will
       be  read from a pipe to "crontab -l". read optionally takes the same arguments as new and init in "key =>
       value" style lists.

       Until you read the crontab, the Crontab object will be uninitialized and will contain no  data.  You  may
       re-read  existing  objects  to get new crontab data, but the object will retain whatever other attributes
       (e.g., strict, etc.) it may have from when it was initialized (or later attributes were changed) but will
       reset error. Use init to completely refresh an object.

       If read fails, error will be set.

       Examples:

           ## reads the crontab for this UID (via crontab -l)
           $ct = new Config::Crontab;
           $ct->read;

           ## reads the crontab from a file
           $ct = new Config::Crontab;
           $ct->read( -file => '/var/cronbackups/cron1' );

           ## same thing as above
           $ct = new Config::Crontab( -file => '/var/cronbackups/cron1' );
           $ct->read; ## '-file' attribute already set

           ## ditto using 'file' method
           $ct = new Config::Crontab;
           $ct->file('/var/cronbackups/cron1');
           $ct->read;

           ## ditto, using a pipe
           $ct = new Config::Crontab;
           $ct->file('cat /var/cronbackups/cron1|');
           $ct->read;

           ## ditto, using 'read' method
           $ct = new Config::Crontab;
           $ct->read( -file => 'cat /var/cronbackups/cron1|');

           ## now fortified with error-checking
           $ct->read
             or do {
               warn $ct->error;
               return;
             };

   mode([mode])
       Returns the current parsing mode for this object instance. If a mode is passed as an argument, next  time
       this  instance  parses  a  crontab  file,  it  will  use  this new mode. Valid modes are line, block (the
       default), or file.

       Example:

           ## re-read this crontab in 'file' mode
           $ct->mode('file');
           $ct->read;

   blocks([\@blocks])
       Returns a list of Block objects in this crontab. The blocks method also takes an optional list  reference
       as an argument to set this crontab's block list.

       Example:

           ## get blocks, remove comments and dump
           for my $block ( $ct->blocks ) {
               $block->remove($block->select( -type   => 'comment' ) );
               $block->remove($block->select( -type   => 'event',
                                              -active => 0 );
               print $block->dump;
           }

           ## one way to remove unwanted blocks from a crontab
           my @keepers = $ct->select( -type    => 'comment',
                                      -data_re => 'keep this block' );
           $ct->blocks(\@keepers);

           ## another way to do it (notice 'nre' instead of 're')
           $ct->remove($ct->select( -type     => 'comment',
                                    -data_nre => 'keep this block' ));

   select([%criteria])
       Returns  a  list of crontab lines that match the specified criteria.  Multiple criteria may be specified.
       If no criteria are specified, select returns a list of all lines in the Crontab object.

       Field names should be preceded by a hyphen (though without a hyphen is acceptable too).

       The following criteria and associated values are available:

       •   -type

           One of 'event', 'env', or 'comment'

       •   -<field>

           The object in the block will be matched using 'eq' (string comparison) against this criterion.

       •   -<field>_re

           The value of the object method specified will be matched using Perl regular expressions (see  perlre)
           instead of string comparisons (uses the "=~" operator internally).

       •   -<field>_nre

           The  value  of  the object method specified will be negatively matched using Perl regular expressions
           (see perlre) instead of string comparisons (uses the "!~" operator internally).

       Examples:

           ## returns a list of comments in the crontab that matches the
           ## exact phrase '## I like bread'
           @comments = $ct->select( -type => 'comment',
                                    -data => '## I like bread' );

           ## returns a list of comments in the crontab that match the
           ## regular expression 'I like bread'
           @comments = $ct->select( -type    => 'comment',
                                    -data_re => 'I like bread' );

           ## select all cron jobs likely to repeat during daylight saving
           @events = $ct->select( -type => 'event',
                                  -hour => '2' );

           ## select cron jobs that happen from 10:20 to 10:40 on Fridays
           @events = $ct->select( -type      => 'event',
                                  -hour      => '10',
                                  -minute_re => '^(?:[2-3][0-9]|40)$',
                                  -dow_re    => '(?:5|Fri)' );

           ## select all cron jobs that execute during business hours
           @events = $ct->select( -type    => 'event',
                                  -hour_re => '^(?:[8-9]|1[0-6])$' );

           ## select all cron jobs that don't execute during business hours
           @events = $ct->select( -type     => 'event',
                                  -hour_nre => '^(?:[8-9]|1[0-6])$' );

           ## get all event lines in the crontab
           @events = $ct->select( -type => 'event' );

           ## get all lines in the crontab
           @lines => $ct->select;

           ## get a line: note list context, also, no 'type' specified
           ($line) = $ct->select( -data_re => 'start backups' );

   select_blocks([%criteria])
       Returns a list of crontab Block objects that match the specified criteria. If no criteria are  specified,
       select_blocks behaves just like the blocks method, returning all blocks in the crontab object.

       The following criteria keys are available:

       •   -index

           An integer or list reference of integers. Returns a list of blocks indexed by the given integer(s).

           Example:

             ## select the first block in the file
             @blocks = $ct->select_blocks( -index => 1 );

             ## select blocks 1, 5, 6, and 7
             @blocks = $ct->select_blocks( -index => [1, 5, 6, 7] );

       select_blocks  returns  Block  objects,  which  means that if you need to access data elements inside the
       blocks, you'll need to retrieve them using lines or select method first:

         ## the first block in the crontab file is an environment variable
         ## declaration: NAME=value
         @blocks = $ct->select_blocks( -index => 1 );
         print "This environment variable value is " . ($block[0]->lines)[0]->value . "\n";

   block($line)
       Returns the block that this line belongs to. If the line is not found in any blocks, undef  is  returned.
       $line must be a Config::Crontab::Event, Config::Crontab::Env, or Config::Crontab::Comment object.

       Examples:

           ## will always return undef for new objects; you'd never really do this
           $block = $ct->block( new Config::Crontab::Comment(-data => '## foo') );

           ## returns a Block object
           $block = $ct->block($existing_crontab_line);
           $block->dump;

           ## find and remove the block in which '/bin/baz' is executed
           my $event = $ct->select( -type       => 'event',
                                    -command_re => '/bin/baz');
           $block = $ct->block($event);
           $ct->remove($block);

   remove($block)
       Removes  a  block  from the crontab file (if a block is specified) or a crontab line from its block (if a
       crontab line object is specified).

       Example:

           ## remove this block from the crontab
           $ct->remove($block);

           ## remove just a line from its block
           $ct->remove($line);

   replace($oldblock,$newblock)
       Replaces $oldblock with $newblock. Returns $oldblock if successful, undef otherwise.

       Example:

           ## look for the block containing 'oldtuesday' and replace it with our new block
           $newblock = new Config::Crontab::Block( -data => '5 10 * * Tue /bin/tuesday' );
           my $oldblock = $ct->block($ct->select(-data_re => 'oldtuesday'));
           $ct->replace($oldblock, $newblock);

   up($block),down($block)
       These methods move a single Config::Crontab::Block object up or down in  the  Crontab  object's  internal
       array.  If  the  Block object is not already a member of this array, it will be added to the array in the
       first position (for up) and in the last position (for down. See also first and last and up  and  down  in
       the Block class.

       Example:

           $ct->up($block);  ## move this block up one position

   first(@block),last(@block)
       These  methods  move  the  Config::Crontab::Block object(s) to the first or last positions in the Crontab
       object's internal array. If the block is not already a member of the array, it will be added in the first
       or last position respectively.

       Example:

           $ct->last(new Config::Crontab::Block( -data => <<_BLOCK_ ));
           ## eat ice cream
           5 * * * 1-5 /bin/eat --cream=ice
           _BLOCK_

   before($look_for,@blocks),after($look_for,@blocks)
       These methods move the Config::Crontab::Block object(s) to the position immediately before or  after  the
       $look_for (or reference) block in the Crontab object's internal array.

       If  the  objects  are  not  members  of the array, they will be added before or after the reference block
       respectively. If the reference object does not exist in the array, the blocks will be moved (or added) to
       the beginning or end of the array respectively (like first and last).

       Example:

           ## search for a block containing a particular event (line)
           $block = $ct->block($ct->select(-command_re => '/bin/foo'));

           ## add the new blocks immediately after this block
           $ct->after($block, @new_blocks);

   write([$filename])
       Writes the crontab to the file specified by the file method. If file is not set (or is false), write will
       attempt to write to a temporary file and load it via the "crontab" program (e.g., "crontab filename").

       You may specify an optional filename as an argument to set file, which will then be used as the filename.

       If write fails, error will be set.

       Example:

           ## write out crontab
           $ct->write
             or do {
               warn "Error: " . $ct->error . "\n";
               return;
             };

           ## set 'file' and write simultaneously (future calls to read and
           ## write will use this filename)
           $ct->write('/var/mycronbackups/cron1.txt');

           ## same thing
           $ct->file('/var/mycronbackups/cron1.txt');
           $ct->write;

   remove_tab([file])
       Removes a crontab. If file is set, that file will be  unlinked.  If  file  is  not  set  (or  is  false),
       remove_tab  will  attempt  to remove the selected user's crontab via crontab-uusername-r or crontab-r
       for the current user id.

       If remove_tab fails, error will be set.

       Example:

         $ct->remove_tab('');  ## unset file() and remove the current user's crontab

   error([string])
       Returns the last error encountered (usually during a file I/O operation). Pass an empty string  to  reset
       (calling init will also reset it).

       Example:

           print "The last error was: " . $ct->error . "\n";
           $ct->error('');

   dump
       Returns a string containing the crontab file.

       Example:

           ## show crontab
           print $ct->dump;

           ## same as 'crontab -l' except pretty-printed
           $ct = new Config::Crontab; $ct->read; print $ct->dump;

Package Config::Crontab::Block

       This  section  describes Config::Crontab::Block objects (hereafter referred to as Block objects). A Block
       object is an abstracted way of dealing with groups of crontab(5) lines. Depending on how  Config::Crontab
       parsed the file (see the read and mode methods in Config::Crontab above), a block may consist of:

       a single line (e.g., a crontab event, environment setting, or comment)
       a "paragraph" of lines (a group of lines, each group separated by at least two newlines). This is the
       default parsing mode.
       the entire crontab file

       The default for Config::Crontab is to read in block (paragraph) mode. This allows you to group lines that
       have a similar purpose as well as order lines within a block (e.g., often you want an environment setting
       to take effect before certain cron commands execute).

       An illustration may be helpful:

       acrontabfilereadinblock(paragraph)mode:
               Line     Block    Block Line    Entry
               1        1        1             ## grind disks
               2        1        2             5 5 * * * /bin/grind
               3        1        3

               4        2        1             ## backup reminder to joe
               5        2        2             MAILTO=joe
               6        2        3             5 0 * * Fri /bin/backup
               7        2        4

               8        3        1             ## meeting reminder to bob
               9        3        2             MAILTO=bob
               10       3        3             30 9 * * Wed /bin/meeting

           Notice  that each block has its own internal line numbering. Vertical space has been inserted between
           blocks to clarify block structures.  Block mode parsing is the default.

       acrontabfilereadinlinemode:
               Line     Block    Block Line    Entry
               1        1        1             ## grind disks
               2        2        1             5 5 * * * /bin/grind
               3        3        1
               4        4        1             ## backup reminder to joe
               5        5        1             MAILTO=joe
               6        6        1             5 0 * * Fri /bin/backup
               7        7        1
               8        8        1             ## meeting reminder to bob
               9        9        1             MAILTO=bob
               10       10       1             30 9 * * Wed /bin/meeting

           Notice that each line is also a block. You normally don't want to read in line mode unless you  don't
           have paragraph breaks in your crontab file (the dumper prints a newline between each block; with each
           line being a block you get an extra newline between each line).

       acrontabfilereadinfilemode:
               Line     Block    Block Line    Entry
               1        1        1             ## grind disks
               2        1        2             5 5 * * * /bin/grind
               3        1        3
               4        1        4             ## backup reminder to joe
               5        1        5             MAILTO=joe
               6        1        6             5 0 * * Fri /bin/backup
               7        1        7
               8        1        8             ## meeting reminder to bob
               9        1        9             MAILTO=bob
               10       1        10            30 9 * * Wed /bin/meeting

           Notice  that  there is only one block in file mode, and each line is a block line (but not a separate
           block).

Package Config::Crontab::Comment

       This  section describes Config::Crontab::Comment objects (hereafter Comment objects). A Comment object is
       an abstracted way of dealing with crontab comments and whitespace (blank lines or lines that consist only
       of whitespace).

Package Config::Crontab::Env

       This section describes  Config::Crontab::Env  objects  (hereafter  Env  objects).  A  Env  object  is  an
       abstracted way of dealing with crontab lines that look like any of the following (see crontab(5)):

           name = value

       From crontab(5):

           the spaces around the equal-sign (=) are optional, and any
           subsequent non-leading spaces in value will be part of the value
           assigned to name.  The value string may be placed in quotes
           (single or double, but matching) to preserve leading or trailing
           blanks.  The name string may also be placed in quote (single or
           double, but matching) to preserve leading, traling or inner
           blanks.

       Like Event objects, Env objects may be active or inactive, the difference being an inactiveEnv object is
       commented out:

           #FOO=bar

   Terminology
       Given the following crontab environment line:

           MAILTO=joe

       we define the following parts of the Env object:

           MAILTO        =        joe
           ======  ============  =====
            name   (not stored)  value

       These  and  other  methods  for  accessing  and  manipulating  Event  objects are described in subsequent
       sections.

Package Config::Crontab::Event

       This section describes Config::Crontab::Event objects (hereafter Event objects). A  Event  object  is  an
       abstracted way of dealing with crontab(5) lines that look like any of the following (see crontab(5)):

       5 0 * 3,6,9,12 *  /bin/quarterly_report
       0 2 * * Fri  $HOME/bin/cake_reminder
       @daily  /bin/bar arg1 arg2
       #30 10 12 * *  /bin/commented out
       5 4 * * *  joeuser  /bin/winkerbean

       Event  objects  are lines in the crontab file which trigger an event at a certain time (or set of times).
       This includes events that have been commented out.  In  Event  object  terms,  an  event  that  has  been
       commented out is inactive. Events that have not been commented out are active.

   Terminology
       The following description will serve as a terminology guide for this class:

       Given the following crontab event entry:

           5 3 * Apr Sun  /bin/rejoice

       we define the following parts of the Event object:

           5 3 * Apr Sun  /bin/rejoice
           -------------  ------------
             datetime       command

       We can break down the datetime field into the following parts:

            5      3     *    Apr   Sun
          ------  ----  ---  -----  ---
          minute  hour  dom  month  dow

       We might also see an event with a "special" datetime part:

           @daily    /bin/brush --teeth --feet
           --------  -------------------------
           datetime          command

       This special datetime field can also be called 'special':

           @daily   /bin/brush --teeth --feet
           -------  -------------------------
           special          command

       As of version 1.05, Crontab supports system crontabs, which adds an extra user field:

           5 3 * Apr Sun  chris  /bin/rejoice
           -------------  -----  ------------
             datetime     user     command

       This field is described in crontab(5) on most systems.

       These  and  other  methods  for  accessing  and  manipulating  Event  objects are described in subsequent
       sections.

See Also

cron(8), crontab(1), crontab(5)

Synopsis

         use Config::Crontab;

         ####################################
         ## making a new crontab from scratch
         ####################################

         my $ct = new Config::Crontab;

         ## make a new Block object
         my $block = new Config::Crontab::Block( -data => <<_BLOCK_ );
         ## mail something to joe at 5 after midnight on Fridays
         MAILTO=joe
         5 0 * * Fri /bin/someprogram 2>&1
         _BLOCK_

         ## add this block to the crontab object
         $ct->last($block);

         ## make another block using Block methods
         $block = new Config::Crontab::Block;
         $block->last( new Config::Crontab::Comment( -data => '## do backups' ) );
         $block->last( new Config::Crontab::Env( -name => 'MAILTO', -value => 'bob' ) );
         $block->last( new Config::Crontab::Event( -minute  => 40,
                                                   -hour    => 3,
                                                   -command => '/sbin/backup --partition=all' ) );
         ## add this block to crontab file
         $ct->last($block);

         ## write out crontab file
         $ct->write;

         ###############################
         ## changing an existing crontab
         ###############################

         my $ct = new Config::Crontab; $ct->read;

         ## comment out the command that runs our backup
         $_->active(0) for $ct->select(-command_re => '/sbin/backup');

         ## save our crontab again
         $ct->write;

         ###############################
         ## read joe's crontab (must have root permissions)
         ###############################

         ## same as "crontab -u joe -l"
         my $ct = new Config::Crontab( -owner => 'joe' );
         $ct->read;

Todo

       •   a better query language that would allow for boolean operators and more complexity (SQL, maybe?  I've
           seen that in one of Ken William's modules using Parse::RecDescent)

       •   would  be cool to use some fancier datetime parsers that can guess when an event will occur and allow
           that in our select methods.  I've seen one of those on  CPAN  but  didn't  look  too  closely.  Maybe
           someone will use both if they need both.

       •   need copy constructors (and clone method)

       •   need  to  be  more  strict  about strict (it should do more things, enable more regex checks on data,
           etc.)

       •   some pretty-print options for dump

       •   alternative crontab syntax support (e.g. SysV-syntax used by Solaris doesn't  support  weekday  7  or
           3-letter month and day name abbreviations)

           Config::Crontab  will  support  SysV-syntax since it is a proper subset of Vixie cron syntax, but you
           will need to necessarily perform your own syntax checking and omit elements unique to Vixie  cron  in
           your UI.

See Also