How to Install and Uninstall golang-github-gorhill-cronexpr.x86_64 Package on Fedora 35

Last updated: July 01,2024

1. Install "golang-github-gorhill-cronexpr.x86_64" package

Please follow the step by step instructions below to install golang-github-gorhill-cronexpr.x86_64 on Fedora 35

$ sudo dnf update $ sudo dnf install golang-github-gorhill-cronexpr.x86_64

2. Uninstall "golang-github-gorhill-cronexpr.x86_64" package

Learn how to uninstall golang-github-gorhill-cronexpr.x86_64 on Fedora 35:

$ sudo dnf remove golang-github-gorhill-cronexpr.x86_64 $ sudo dnf autoremove

3. Information about the golang-github-gorhill-cronexpr.x86_64 package on Fedora 35

Last metadata expiration check: 3:04:11 ago on Wed Sep 7 02:25:42 2022.
Available Packages
Name : golang-github-gorhill-cronexpr
Version : 1.0.0
Release : 4.fc35
Architecture : x86_64
Size : 746 k
Source : golang-github-gorhill-cronexpr-1.0.0-4.fc35.src.rpm
Repository : updates
Summary : Cron expression parser in Go language
URL : https://github.com/gorhill/cronexpr
License : GPLv3 or ASL 2.0
Description :
: Given a cron expression and a time stamp, you can get the next time stamp which
: satisfies the cron expression.
:
: In another project, I decided to use cron expression syntax to encode scheduling
: information. Thus this standalone library to parse and apply time stamps to cron
: expressions.
:
: The time-matching algorithm in this implementation is efficient, it avoids as
: much as possible to guess the next matching time stamp, a common technique seen
: in a number of implementations out there.