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

Last updated: May 04,2024

1. Install "perl-TryCatch.x86_64" package

Please follow the guidelines below to install perl-TryCatch.x86_64 on Fedora 35

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

2. Uninstall "perl-TryCatch.x86_64" package

Please follow the guidance below to uninstall perl-TryCatch.x86_64 on Fedora 35:

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

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

Last metadata expiration check: 1:58:35 ago on Wed Sep 7 02:25:42 2022.
Available Packages
Name : perl-TryCatch
Version : 1.003002
Release : 27.fc35
Architecture : x86_64
Size : 26 k
Source : perl-TryCatch-1.003002-27.fc35.src.rpm
Repository : fedora
Summary : First class try catch semantics for Perl, without source filters
URL : https://metacpan.org/release/TryCatch
License : GPL+ or Artistic
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.