How To Install perl-Text-CSV_XS on Rocky Linux 8

In this tutorial we learn how to install perl-Text-CSV_XS on Rocky Linux 8. perl-Text-CSV_XS is Comma-separated values manipulation routines

Introduction

In this tutorial we learn how to install perl-Text-CSV_XS on Rocky Linux 8.

What is perl-Text-CSV_XS

Text comma-separated values. An instance of the Text fields into a CSV string and parse a CSV string into fields.

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

Install perl-Text-CSV_XS 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-Text-CSV_XS using dnf by running the following command:

sudo dnf -y install perl-Text-CSV_XS

Install perl-Text-CSV_XS 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-Text-CSV_XS using yum by running the following command:

sudo yum -y install perl-Text-CSV_XS

How To Uninstall perl-Text-CSV_XS on Rocky Linux 8

To uninstall only the perl-Text-CSV_XS package we can use the following command:

sudo dnf remove perl-Text-CSV_XS

perl-Text-CSV_XS Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/61
/usr/lib/.build-id/61/661e980e6b321dd74d740861f6d974eee8cab6
/usr/lib64/perl5/vendor_perl/Text
/usr/lib64/perl5/vendor_perl/Text/CSV_XS.pm
/usr/lib64/perl5/vendor_perl/auto/Text
/usr/lib64/perl5/vendor_perl/auto/Text/CSV_XS
/usr/lib64/perl5/vendor_perl/auto/Text/CSV_XS/CSV_XS.so
/usr/share/doc/perl-Text-CSV_XS
/usr/share/doc/perl-Text-CSV_XS/CONTRIBUTING.md
/usr/share/doc/perl-Text-CSV_XS/ChangeLog
/usr/share/doc/perl-Text-CSV_XS/README
/usr/share/doc/perl-Text-CSV_XS/examples
/usr/share/doc/perl-Text-CSV_XS/examples/csv-check
/usr/share/doc/perl-Text-CSV_XS/examples/csv2xls
/usr/share/doc/perl-Text-CSV_XS/examples/csv2xlsx
/usr/share/doc/perl-Text-CSV_XS/examples/csvdiff
/usr/share/doc/perl-Text-CSV_XS/examples/parser-xs.pl
/usr/share/doc/perl-Text-CSV_XS/examples/rewrite.pl
/usr/share/doc/perl-Text-CSV_XS/examples/speed.pl
/usr/share/man/man3/Text::CSV_XS.3pm.gz

References

Summary

In this tutorial we learn how to install perl-Text-CSV_XS on Rocky Linux 8 using yum and dnf.