How to Install and Uninstall perl-Module-Load.src Package on Oracle Linux 8

Last updated: June 18,2024

1. Install "perl-Module-Load.src" package

Please follow the step by step instructions below to install perl-Module-Load.src on Oracle Linux 8

$ sudo dnf update $ sudo dnf install perl-Module-Load.src

2. Uninstall "perl-Module-Load.src" package

This is a short guide on how to uninstall perl-Module-Load.src on Oracle Linux 8:

$ sudo dnf remove perl-Module-Load.src $ sudo dnf autoremove

3. Information about the perl-Module-Load.src package on Oracle Linux 8

Last metadata expiration check: 0:41:20 ago on Mon Sep 12 02:51:38 2022.
Available Packages
Name : perl-Module-Load
Epoch : 1
Version : 0.36
Release : 1.module+el8.6.0+20545+312b6629
Architecture : src
Size : 21 k
Source : None
Repository : ol8_appstream
Summary : Run-time require of both modules and files
URL : https://metacpan.org/release/Module-Load
License : GPL+ or Artistic
Description : If you consult "perldoc -f require" you will see that "require" will behave
: differently when given a bare-word or a string. In the case of a string,
: "require" assumes you are wanting to load a file. But in the case of
: a bare-word, it assumes you mean a module.
:
: This gives nasty overhead when you are trying to dynamically require modules
: at run-time, since you will need to change the module notation to a file
: notation fitting the particular platform you are on.
:
: "load" eliminates the need for this overhead and will just DWYM.