How to Install and Uninstall golang-github-ryanuber-glob-devel.noarch Package on Fedora 36

Last updated: July 08,2024

1. Install "golang-github-ryanuber-glob-devel.noarch" package

Please follow the instructions below to install golang-github-ryanuber-glob-devel.noarch on Fedora 36

$ sudo dnf update $ sudo dnf install golang-github-ryanuber-glob-devel.noarch

2. Uninstall "golang-github-ryanuber-glob-devel.noarch" package

This guide let you learn how to uninstall golang-github-ryanuber-glob-devel.noarch on Fedora 36:

$ sudo dnf remove golang-github-ryanuber-glob-devel.noarch $ sudo dnf autoremove

3. Information about the golang-github-ryanuber-glob-devel.noarch package on Fedora 36

Last metadata expiration check: 0:08:33 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : golang-github-ryanuber-glob-devel
Version : 1.0.0
Release : 9.fc36
Architecture : noarch
Size : 13 k
Source : golang-github-ryanuber-glob-1.0.0-9.fc36.src.rpm
Repository : fedora
Summary : Basic string globs in Go
URL : https://github.com/ryanuber/go-glob
License : MIT
Description : Go-glob is a single-function library implementing basic string glob support.
:
: Globs are an extremely user-friendly way of supporting string matching without
: requiring knowledge of regular expressions or Go's particular regex engine. Most
: people understand that if you put a * character somewhere in a string, it is
: treated as a wildcard. Surprisingly, this functionality isn't found in Go's
: standard library, except for path.Match, which is intended to be used while
: comparing paths (not arbitrary strings), and contains specialized logic for this
: use case. A better solution might be a POSIX basic (non-ERE) regular expression
: engine for Go, which doesn't exist currently.
:
: This package contains the source code needed for building packages that
: reference the following Go import paths:
: – github.com/ryanuber/go-glob