How to Install and Uninstall perl-Config-Grammar Package on openSUSE Leap

Last updated: May 20,2024

1. Install "perl-Config-Grammar" package

This guide covers the steps necessary to install perl-Config-Grammar on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-Config-Grammar

2. Uninstall "perl-Config-Grammar" package

Please follow the guidance below to uninstall perl-Config-Grammar on openSUSE Leap:

$ sudo zypper remove perl-Config-Grammar

3. Information about the perl-Config-Grammar package on openSUSE Leap

Information for package perl-Config-Grammar:
--------------------------------------------
Repository : Main Repository
Name : perl-Config-Grammar
Version : 1.13-bp155.1.4
Arch : noarch
Vendor : openSUSE
Installed Size : 78.6 KiB
Installed : No
Status : not installed
Source package : perl-Config-Grammar-1.13-bp155.1.4.src
Upstream URL : https://metacpan.org/release/Config-Grammar
Summary : Grammar-based, user-friendly config parser
Description :
Config::Grammar is a module to parse configuration files. The optional
second parameter to the parse() method can be used to specify the file
encoding to use for opening the file (see documentation for Perl's use open
pragma).
The 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 uses a grammar that is supplied upon
creation of a Config::Grammar object 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.
The *maketmpl* method can generate a template configuration file. If your
grammar contains regexp matches, the template will not be all that helpful
as Config::Grammar is not smart enough to give you sensible template data
based in regular expressions. The related function *maketmplmin* generates
a minimal configuration template without examples, regexps or comments and
thus allows an experienced user to fill in the configuration data more
efficiently.