How to Install and Uninstall perl-UNIVERSAL-require Package on openSuSE Tumbleweed

Last updated: May 03,2024

1. Install "perl-UNIVERSAL-require" package

Learn how to install perl-UNIVERSAL-require on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-UNIVERSAL-require

2. Uninstall "perl-UNIVERSAL-require" package

This tutorial shows how to uninstall perl-UNIVERSAL-require on openSuSE Tumbleweed:

$ sudo zypper remove perl-UNIVERSAL-require

3. Information about the perl-UNIVERSAL-require package on openSuSE Tumbleweed

Information for package perl-UNIVERSAL-require:
-----------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-UNIVERSAL-require
Version : 0.19-1.14
Arch : noarch
Vendor : openSUSE
Installed Size : 10.6 KiB
Installed : No
Status : not installed
Source package : perl-UNIVERSAL-require-0.19-1.14.src
Upstream URL : https://metacpan.org/release/UNIVERSAL-require
Summary : Require() modules from a variable [deprecated]
Description :
Before using this module, you should look at the alternatives, some of
which are listed in SEE ALSO below.
This module provides a safe mechanism for loading a module at runtime, when
you have the name of the module in a variable.
If you've ever had to do this...
eval "require $module";
to get around the bareword caveats on require(), this module is for you. It
creates a universal require() class method that will work with every Perl
module and its secure. So instead of doing some arcane eval() work, you can
do this:
$module->require;
It doesn't save you much typing, but it'll make a lot more sense to someone
who's not a ninth level Perl acolyte.