How to Install and Uninstall perl-Scope-Guard.noarch Package on Fedora 34

Last updated: October 06,2024

1. Install "perl-Scope-Guard.noarch" package

This is a short guide on how to install perl-Scope-Guard.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install perl-Scope-Guard.noarch

2. Uninstall "perl-Scope-Guard.noarch" package

Please follow the instructions below to uninstall perl-Scope-Guard.noarch on Fedora 34:

$ sudo dnf remove perl-Scope-Guard.noarch $ sudo dnf autoremove

3. Information about the perl-Scope-Guard.noarch package on Fedora 34

Last metadata expiration check: 5:04:58 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : perl-Scope-Guard
Version : 0.21
Release : 16.fc34
Architecture : noarch
Size : 15 k
Source : perl-Scope-Guard-0.21-16.fc34.src.rpm
Repository : fedora
Summary : Lexically scoped resource management
URL : https://metacpan.org/release/Scope-Guard
License : GPL+ or Artistic
Description : This module provides a convenient way to perform cleanup or other forms of
: resource management at the end of a scope. It is particularly useful when
: dealing with exceptions: the Scope::Guard constructor takes a reference to
: a subroutine that is guaranteed to be called even if the thread of
: execution is aborted prematurely. This effectively allows lexically-scoped
: "promises" to be made that are automatically honored by perl's garbage
: collector.