How to Install and Uninstall perl-UNIVERSAL-can.noarch Package on Oracle Linux 9

Last updated: July 01,2024

1. Install "perl-UNIVERSAL-can.noarch" package

Here is a brief guide to show you how to install perl-UNIVERSAL-can.noarch on Oracle Linux 9

$ sudo dnf update $ sudo dnf install perl-UNIVERSAL-can.noarch

2. Uninstall "perl-UNIVERSAL-can.noarch" package

This guide covers the steps necessary to uninstall perl-UNIVERSAL-can.noarch on Oracle Linux 9:

$ sudo dnf remove perl-UNIVERSAL-can.noarch $ sudo dnf autoremove

3. Information about the perl-UNIVERSAL-can.noarch package on Oracle Linux 9

Last metadata expiration check: 0:25:58 ago on Thu Feb 15 07:50:05 2024.
Available Packages
Name : perl-UNIVERSAL-can
Version : 1.20140328
Release : 21.el9
Architecture : noarch
Size : 22 k
Source : perl-UNIVERSAL-can-1.20140328-21.el9.src.rpm
Repository : epel
Summary : Hack around people calling UNIVERSAL::can() as a function
URL : https://metacpan.org/release/UNIVERSAL-can
License : GPL+ or Artistic
Description : The UNIVERSAL class provides a few default methods so that all objects
: can use them. Object orientation allows programmers to override these
: methods in subclasses to provide more specific and appropriate behavior.
:
: Some authors call methods in the UNIVERSAL class on potential invocants
: as functions, bypassing any possible overriding. This is wrong and you
: should not do it. Unfortunately, not everyone heeds this warning and
: their bad code can break your good code.