How to Install and Uninstall perl-TryCatch.x86_64 Package on Fedora 39

Last updated: November 27,2024

1. Install "perl-TryCatch.x86_64" package

Please follow the guidance below to install perl-TryCatch.x86_64 on Fedora 39

$ sudo dnf update $ sudo dnf install perl-TryCatch.x86_64

2. Uninstall "perl-TryCatch.x86_64" package

Please follow the steps below to uninstall perl-TryCatch.x86_64 on Fedora 39:

$ sudo dnf remove perl-TryCatch.x86_64 $ sudo dnf autoremove

3. Information about the perl-TryCatch.x86_64 package on Fedora 39

Last metadata expiration check: 5:56:40 ago on Thu Mar 7 11:44:58 2024.
Available Packages
Name : perl-TryCatch
Version : 1.003002
Release : 33.fc39
Architecture : x86_64
Size : 27 k
Source : perl-TryCatch-1.003002-33.fc39.src.rpm
Repository : fedora
Summary : First class try catch semantics for Perl, without source filters
URL : https://metacpan.org/release/TryCatch
License : GPL-1.0-or-later OR Artistic-1.0-Perl
Description : This module aims to provide a nicer syntax and method to catch errors in
: Perl, similar to what is found in other languages (such as Java, Python or
: C++). The standard method of using eval {}; if ($@) {} is often prone to
: subtle bugs, primarily that its far too easy to stomp on the error in error
: handlers. And also eval/if isn't the nicest idiom.