How to Install and Uninstall libclone-pp-perl Package on Kali Linux

Last updated: May 12,2024

1. Install "libclone-pp-perl" package

In this section, we are going to explain the necessary steps to install libclone-pp-perl on Kali Linux

$ sudo apt update $ sudo apt install libclone-pp-perl

2. Uninstall "libclone-pp-perl" package

This guide covers the steps necessary to uninstall libclone-pp-perl on Kali Linux:

$ sudo apt remove libclone-pp-perl $ sudo apt autoclean && sudo apt autoremove

3. Information about the libclone-pp-perl package on Kali Linux

Package: libclone-pp-perl
Version: 1.08-2
Installed-Size: 26
Maintainer: Debian Perl Group
Architecture: all
Depends: perl:any
Size: 9224
SHA256: 7b39708c8fadf5685724816a824ec27d03003d61a4f5cad4492aeee3359f7ee7
SHA1: d6297389b7341f70df0243b8001d7084eaeb0326
MD5sum: 3316e759b74230e31203778cff45d588
Description: module to recursively copy Perl datatypes
Clone::PP provides a general-purpose clone function to make deep
copies of Perl data structures. It calls itself recursively to copy
nested hash, array, scalar and reference types, including tied
variables and objects.
.
The clone() function takes a scalar argument to copy. To duplicate
arrays or hashes, pass them in by reference:
.
my $copy = clone(\@array); my @copy = @{ clone(\@array) };
my $copy = clone(\%hash); my %copy = %{ clone(\%hash) };
.
The clone() function also accepts an optional second parameter that
can be used to limit the depth of the copy. If you pass a limit of
0, clone will return the same value you supplied; for a limit of
1, a shallow copy is constructed; for a limit of 2, two layers of
copying are done, and so on.
.
This is a pure-perl implementation. For a faster XS-/C-based
implementation see the libclone-perl package.
Description-md5:
Multi-Arch: foreign
Homepage: https://metacpan.org/release/Clone-PP
Tag: devel::lang:perl, devel::library, implemented-in::perl, role::shared-lib
Section: perl
Priority: optional
Filename: pool/main/libc/libclone-pp-perl/libclone-pp-perl_1.08-2_all.deb