How To Install perl-Config-Grammar on CentOS 7

In this tutorial we learn how to install perl-Config-Grammar on CentOS 7. perl-Config-Grammar is Grammar-based, user-friendly config parser

Introduction

In this tutorial we learn how to install perl-Config-Grammar on CentOS 7.

What is perl-Config-Grammar

Config configuration may consist of multiple-level sections with assignments and tabular data. The parsed data will be returned as a hash containing the whole configuration. Config grammar that is supplied upon creation of a Config to parse the configuration file and return helpful error messages in case of syntax errors. Using the makepod method you can generate documentation of the configuration file format.

We can use yum or dnf to install perl-Config-Grammar on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install perl-Config-Grammar.

Install perl-Config-Grammar on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install perl-Config-Grammar using yum by running the following command:

sudo yum -y install perl-Config-Grammar

Install perl-Config-Grammar on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install perl-Config-Grammar using dnf by running the following command:

sudo dnf -y install perl-Config-Grammar

How To Uninstall perl-Config-Grammar on CentOS 7

To uninstall only the perl-Config-Grammar package we can use the following command:

sudo dnf remove perl-Config-Grammar

References

Summary

In this tutorial we learn how to install perl-Config-Grammar on CentOS 7 using yum and dnf.