Skip to content

ingydotnet/pegex-crontab-pm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NAME

Pegex::Crontab - Pegex crontab Parser

pegex-crontab-pm pegex-crontab-pm

SYNOPSIS

use Pegex::Crontab;

$crontabs = Pegex::Crontab->new->parse(
    "0 5 * * 1 tar -zcf /var/backups/home.tgz /home/" . "\n"
);

use feature qw( say );
say $crontabs->[0]->{cmd};  # "tar -zcf /var/backups/home.tgz /home/"
say $crontabs->[0]->{min};  # "0"
say $crontabs->[0]->{hour}; # "5"
say $crontabs->[0]->{dom};  # "*"
say $crontabs->[0]->{mon};  # "*"
say $crontabs->[0]->{dow};  # "1"

DESCRIPTION

Pegex::Crontab is a crontab parser written in Pegex.

SEE ALSO

AUTHOR

Ingy döt Net <ingy@cpan.org>

COPYRIGHT

Copyright 2011-2014. Ingy döt Net.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

See http://www.perl.com/perl/misc/Artistic.html

About

Pegex Crontab Parser

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages