How to Install and Uninstall perl-Schedule-Cron.noarch Package on Fedora 35

Last updated: June 30,2024

1. Install "perl-Schedule-Cron.noarch" package

This guide let you learn how to install perl-Schedule-Cron.noarch on Fedora 35

$ sudo dnf update $ sudo dnf install perl-Schedule-Cron.noarch

2. Uninstall "perl-Schedule-Cron.noarch" package

Please follow the steps below to uninstall perl-Schedule-Cron.noarch on Fedora 35:

$ sudo dnf remove perl-Schedule-Cron.noarch $ sudo dnf autoremove

3. Information about the perl-Schedule-Cron.noarch package on Fedora 35

Last metadata expiration check: 4:23:01 ago on Wed Sep 7 08:25:01 2022.
Available Packages
Name : perl-Schedule-Cron
Version : 1.01
Release : 7.fc35
Architecture : noarch
Size : 46 k
Source : perl-Schedule-Cron-1.01-7.fc35.src.rpm
Repository : fedora
Summary : Provides a simple but complete cron like scheduler
URL : https://metacpan.org/release/Schedule-Cron
License : GPL+ or Artistic
Description : 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 man page 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).
:
: This module is rather effective concerning system load. It calculates
: the execution dates in advance and will sleep until those dates are
: reached (and wont wake up every minute to check for execution like
: cron). However, it relies on the accuracy of your sleep() system
: call.