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

Last updated: October 05,2024

1. Install "perl-TryCatch.x86_64" package

In this section, we are going to explain the necessary steps to install perl-TryCatch.x86_64 on Fedora 36

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

2. Uninstall "perl-TryCatch.x86_64" package

Please follow the instructions below to uninstall perl-TryCatch.x86_64 on Fedora 36:

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

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

Last metadata expiration check: 4:31:32 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : perl-TryCatch
Version : 1.003002
Release : 28.fc36
Architecture : x86_64
Size : 27 k
Source : perl-TryCatch-1.003002-28.fc36.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.