How to Install and Uninstall perl-Data-Denter.noarch Package on AlmaLinux 8

Last updated: November 01,2024

1. Install "perl-Data-Denter.noarch" package

Please follow the guidelines below to install perl-Data-Denter.noarch on AlmaLinux 8

$ sudo dnf update $ sudo dnf install perl-Data-Denter.noarch

2. Uninstall "perl-Data-Denter.noarch" package

This is a short guide on how to uninstall perl-Data-Denter.noarch on AlmaLinux 8:

$ sudo dnf remove perl-Data-Denter.noarch $ sudo dnf autoremove

3. Information about the perl-Data-Denter.noarch package on AlmaLinux 8

Last metadata expiration check: 1:06:00 ago on Mon Sep 5 03:22:42 2022.
Available Packages
Name : perl-Data-Denter
Version : 0.15
Release : 29.el8
Architecture : noarch
Size : 26 k
Source : perl-Data-Denter-0.15-29.el8.src.rpm
Repository : epel
Summary : An alternative to Data::Dumper and Storable
URL : https://metacpan.org/release/Data-Denter
License : GPL+ or Artistic
Description : The main problem with Data::Dumper (one of my all-time favorite modules)
: is that you have to use 'eval()' to deserialize the data you've dumped.
: This is great if you can trust the data you're evaling, but horrible if
: you can't. A good alternative is Storable.pm. It can safely thaw your
: frozen data. But if you want to read/edit the frozen data, you're out of
: luck, because Storable uses a binary format. Even Data::Dumper's output
: can be a little cumbersome for larger data objects. Enter Data::Denter.
:
: Data::Denter is yet another Perl data serializer/deserializer. It formats
: nested data structures in an indented fashion. It is optimized for human
: readability/editability, safe deserialization, and (eventually) speed.