How to Install and Uninstall perl-TryCatch Package on openSuSE Tumbleweed

Last updated: May 19,2024

1. Install "perl-TryCatch" package

Please follow the guidelines below to install perl-TryCatch on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-TryCatch

2. Uninstall "perl-TryCatch" package

Please follow the instructions below to uninstall perl-TryCatch on openSuSE Tumbleweed:

$ sudo zypper remove perl-TryCatch

3. Information about the perl-TryCatch package on openSuSE Tumbleweed

Information for package perl-TryCatch:
--------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-TryCatch
Version : 1.003002-6.28
Arch : x86_64
Vendor : openSUSE
Installed Size : 44.2 KiB
Installed : No
Status : not installed
Source package : perl-TryCatch-1.003002-6.28.src
Upstream URL : http://search.cpan.org/dist/TryCatch/
Summary : first class try catch semantics for Perl, without source filters.
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.