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

Last updated: September 30,2024

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

This tutorial shows how to install golang-github-ryanuber-glob-devel.noarch on Fedora 34

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

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

Please follow the steps below to uninstall golang-github-ryanuber-glob-devel.noarch on Fedora 34:

$ 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 34

Last metadata expiration check: 0:45:35 ago on Tue Sep 6 02:10:55 2022.
Available Packages
Name : golang-github-ryanuber-glob-devel
Version : 1.0.0
Release : 7.fc34
Architecture : noarch
Size : 13 k
Source : golang-github-ryanuber-glob-1.0.0-7.fc34.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