How To Install perl-XML-Filter-BufferText on Rocky Linux 8

In this tutorial we learn how to install perl-XML-Filter-BufferText on Rocky Linux 8. perl-XML-Filter-BufferText is Filter to put all characters() in one event

Introduction

In this tutorial we learn how to install perl-XML-Filter-BufferText on Rocky Linux 8.

What is perl-XML-Filter-BufferText

This is a very simple filter. One common cause of grief (and programmer error) is that XML parsers aren’t required to provide character events in one chunk. They can, but are not forced to, and most don’t. This filter does the trivial but oft-repeated task of putting all characters into a single event.

We can use yum or dnf to install perl-XML-Filter-BufferText on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-XML-Filter-BufferText.

Install perl-XML-Filter-BufferText on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install perl-XML-Filter-BufferText using dnf by running the following command:

sudo dnf -y install perl-XML-Filter-BufferText

Install perl-XML-Filter-BufferText on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install perl-XML-Filter-BufferText using yum by running the following command:

sudo yum -y install perl-XML-Filter-BufferText

How To Uninstall perl-XML-Filter-BufferText on Rocky Linux 8

To uninstall only the perl-XML-Filter-BufferText package we can use the following command:

sudo dnf remove perl-XML-Filter-BufferText

perl-XML-Filter-BufferText Package Contents on Rocky Linux 8

/usr/share/doc/perl-XML-Filter-BufferText
/usr/share/doc/perl-XML-Filter-BufferText/Changes
/usr/share/doc/perl-XML-Filter-BufferText/README
/usr/share/man/man3/XML::Filter::BufferText.3pm.gz
/usr/share/perl5/vendor_perl/XML
/usr/share/perl5/vendor_perl/XML/Filter
/usr/share/perl5/vendor_perl/XML/Filter/BufferText.pm

References

Summary

In this tutorial we learn how to install perl-XML-Filter-BufferText on Rocky Linux 8 using yum and dnf.