How to Install and Uninstall perl-Data-OptList.src Package on Oracle Linux 8

Last updated: May 17,2024

1. Install "perl-Data-OptList.src" package

Please follow the instructions below to install perl-Data-OptList.src on Oracle Linux 8

$ sudo dnf update $ sudo dnf install perl-Data-OptList.src

2. Uninstall "perl-Data-OptList.src" package

Please follow the guidelines below to uninstall perl-Data-OptList.src on Oracle Linux 8:

$ sudo dnf remove perl-Data-OptList.src $ sudo dnf autoremove

3. Information about the perl-Data-OptList.src package on Oracle Linux 8

Last metadata expiration check: 3:26:01 ago on Mon Sep 12 02:51:38 2022.
Available Packages
Name : perl-Data-OptList
Version : 0.110
Release : 7.module+el8.6.0+20545+312b6629
Architecture : src
Size : 34 k
Source : None
Repository : ol8_appstream
Summary : Parse and validate simple name/value option pairs
URL : http://search.cpan.org/dist/Data-OptList/
License : GPL+ or Artistic
Description : Hashes are great for storing named data, but if you want more than one entry
: for a name, you have to use a list of pairs. Even then, this is really boring
: to write:
:
: $values = [
: foo => undef,
: bar => undef,
: baz => undef,
: xyz => { ... },
: ];
:
: With Data::OptList, you can do this instead:
:
: $values = Data::OptList::mkopt([
: qw(foo bar baz),
: xyz => { ... },
: ]);
:
: This works by assuming that any defined scalar is a name and any reference
: following a name is its value.