How to Install and Uninstall perl-Parse-RecDescent.noarch Package on Oracle Linux 9

Last updated: July 01,2024

1. Install "perl-Parse-RecDescent.noarch" package

Please follow the instructions below to install perl-Parse-RecDescent.noarch on Oracle Linux 9

$ sudo dnf update $ sudo dnf install perl-Parse-RecDescent.noarch

2. Uninstall "perl-Parse-RecDescent.noarch" package

Please follow the guidelines below to uninstall perl-Parse-RecDescent.noarch on Oracle Linux 9:

$ sudo dnf remove perl-Parse-RecDescent.noarch $ sudo dnf autoremove

3. Information about the perl-Parse-RecDescent.noarch package on Oracle Linux 9

Last metadata expiration check: 0:21:23 ago on Thu Feb 15 07:50:05 2024.
Available Packages
Name : perl-Parse-RecDescent
Version : 1.967015
Release : 14.el9
Architecture : noarch
Size : 196 k
Source : perl-Parse-RecDescent-1.967015-14.el9.src.rpm
Repository : epel
Summary : Generate Recursive-Descent Parsers
URL : https://metacpan.org/release/Parse-RecDescent
License : (GPL+ or Artistic) and (GPLv2+ or Artistic)
Description : Parse::RecDescent incrementally generates top-down recursive-descent
: text parsers from simple yacc-like grammar specifications. It
: provides:
:
: * Regular expressions or literal strings as terminals (tokens)
: * Multiple (non-contiguous) productions for any rule
: * Repeated and optional subrules within productions
: * Full access to Perl within actions specified as part of the grammar
: * Simple automated error reporting during parser generation and parsing
: * The ability to commit to, uncommit to, or reject particular
: productions during a parse
: * The ability to pass data up and down the parse tree ("down" via
: subrule argument lists, "up" via subrule return values)
: * Incremental extension of the parsing grammar (even during a parse)
: * Precompilation of parser objects
: * User-definable reduce-reduce conflict resolution via "scoring" of
: matching productions