How to Install and Uninstall perl-List-UtilsBy Package on openSuSE Tumbleweed

Last updated: May 20,2024

1. Install "perl-List-UtilsBy" package

This tutorial shows how to install perl-List-UtilsBy on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-List-UtilsBy

2. Uninstall "perl-List-UtilsBy" package

This is a short guide on how to uninstall perl-List-UtilsBy on openSuSE Tumbleweed:

$ sudo zypper remove perl-List-UtilsBy

3. Information about the perl-List-UtilsBy package on openSuSE Tumbleweed

Information for package perl-List-UtilsBy:
------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-List-UtilsBy
Version : 0.12-1.9
Arch : noarch
Vendor : openSUSE
Installed Size : 55.8 KiB
Installed : No
Status : not installed
Source package : perl-List-UtilsBy-0.12-1.9.src
Upstream URL : https://metacpan.org/release/List-UtilsBy
Summary : Higher-order list utility functions
Description :
This module provides a number of list utility functions, all of which take
an initial code block to control their behaviour. They are variations on
similar core perl or 'List::Util' functions of similar names, but which use
the block to control their behaviour. For example, the core Perl function
'sort' takes a list of values and returns them, sorted into order by their
string value. The sort_by function sorts them according to the string value
returned by the extra function, when given each value.
my @names_sorted = sort @names;
my @people_sorted = sort_by { $_->name } @people;