How to Install and Uninstall perl-parent.noarch Package on CentOS 7 / RHEL 7

Last updated: May 01,2024

1. Install "perl-parent.noarch" package

This guide let you learn how to install perl-parent.noarch on CentOS 7 / RHEL 7

$ sudo yum makecache $ sudo yum install perl-parent.noarch

2. Uninstall "perl-parent.noarch" package

Please follow the guidance below to uninstall perl-parent.noarch on CentOS 7 / RHEL 7:

$ sudo yum remove perl-parent.noarch $ sudo yum autoremove

3. Information about the perl-parent.noarch package on CentOS 7 / RHEL 7

Installed Packages
Name : perl-parent
Arch : noarch
Epoch : 1
Version : 0.225
Release : 244.el7
Size : 8.0 k
Repo : installed
From repo : anaconda
Summary : Establish an ISA relationship with base classes at compile time
URL : http://search.cpan.org/dist/parent/
License : GPL+ or Artistic
Description : Allows you to both load one or more modules, while setting up
: inheritance from those modules at the same time. Mostly similar in
: effect to:
:
: package Baz;
:
: BEGIN {
: require Foo;
: require Bar;
:
: push @ISA, qw(Foo Bar);
: }