How to Install and Uninstall perl-Path-FindDev Package on openSUSE Leap

Last updated: May 17,2024

1. Install "perl-Path-FindDev" package

Please follow the instructions below to install perl-Path-FindDev on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-Path-FindDev

2. Uninstall "perl-Path-FindDev" package

Here is a brief guide to show you how to uninstall perl-Path-FindDev on openSUSE Leap:

$ sudo zypper remove perl-Path-FindDev

3. Information about the perl-Path-FindDev package on openSUSE Leap

Information for package perl-Path-FindDev:
------------------------------------------
Repository : Main Repository
Name : perl-Path-FindDev
Version : 0.5.3-bp155.2.8
Arch : noarch
Vendor : openSUSE
Installed Size : 37.8 KiB
Installed : No
Status : not installed
Source package : perl-Path-FindDev-0.5.3-bp155.2.8.src
Upstream URL : http://search.cpan.org/dist/Path-FindDev/
Summary : Find a development path somewhere in an upper hierarchy
Description :
This package is mostly a glue layer around 'Path::IsDev' with a few
directory walking tricks.
use Path::FindDev qw( find_dev );
if ( my $root = find_dev('/some/path/to/something/somewhere')) {
print "development root = $root";
} else {
print "No development root :(";
}