How to Install and Uninstall perl-Clone Package on openSuSE Tumbleweed

Last updated: June 16,2024

1. Install "perl-Clone" package

This guide covers the steps necessary to install perl-Clone on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Clone

2. Uninstall "perl-Clone" package

This guide let you learn how to uninstall perl-Clone on openSuSE Tumbleweed:

$ sudo zypper remove perl-Clone

3. Information about the perl-Clone package on openSuSE Tumbleweed

Information for package perl-Clone:
-----------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Clone
Version : 0.46-1.6
Arch : x86_64
Vendor : openSUSE
Installed Size : 27.2 KiB
Installed : No
Status : not installed
Source package : perl-Clone-0.46-1.6.src
Upstream URL : https://metacpan.org/release/Clone
Summary : Recursively copy Perl datatypes
Description :
This module provides a 'clone()' method which makes recursive copies of
nested hash, array, scalar and reference types, including tied variables
and objects.
'clone()' takes a scalar argument and duplicates it. To duplicate lists,
arrays or hashes, pass them in by reference, e.g.
my $copy = clone (\@array);
my %copy = %{ clone (\%hash) };