Use ‘instmodsh‘ command to get a complete list of installed Perl modules on your Linux system and it provides an interactive shell type interface to query details of locally installed Perl modules.
Open your terminal and type the following command:
instmodsh
Now, you will get the list of available commands as below:
Available commands are:
l - List all installed modules
m <module> - Select a module
q - Quit the program
cmd?
At cmd? prompt, type ‘l‘ to list all installed Perl modules:
Installed modules are:
Algorithm::Diff
Apache::DBI
Apache::Session
AppConfig
B::Hooks::EndOfScope
Bit::Vector
Capture::Tiny
Carp::Clan
Class::Singleton
Cwd
DBI
Data::Dumper
Data::Table
Date::Calc
DateTime
DateTime::Format::Mail
DateTime::Locale
DateTime::TimeZone
Devel::NYTProf
Digest::CRC
Digest::HMAC
Digest::MD5
Dist::CheckConflicts
Email::Date::Format
Email::Simple
Email::Valid
Encode
Exporter::Tiny
ExtUtils::MakeMaker
File::Slurp
Font::AFM
Frontier::RPC
HTML::Format
HTML::FormatText::WithLinks
HTML::Tree
IO::Tty
Imager
Imager::QRCode
JSON
JSON::Any
LWP
LWP::Protocol::https
List::AllUtils
List::MoreUtils
List::Util
MD5
MIME::Base64
MIME::Lite
MIME::Lite::TT::HTML
MIME::Tools
MIME::Types
Mail
Mail::Sendmail
Math::BigInt
Module::Implementation
Module::Runtime
Mozilla::CA
Net
Net::DNS
Net::DNS::Check
Net::HTTP
Net::SFTP::Foreign
Number::Format
Package::Stash
Package::Stash::XS
Params::Validate
Perl
Socket
Sub::Exporter::Progressive
Sub::Uplevel
Switch
Template
Text::Diff
Try::Tiny
Variable::Magic
WWW::Curl
XML::Generator
XML::NamespaceSupport
XML::SAX
XML::SAX::Base
XML::SAX::Expat
XML::Simple
XML::Writer
namespace::clean
cmd?

Related Posts
-
Linux command to list out all installed fonts: fc-listfc-list lists fonts and styles available on the system using fontconfig. You can use fc-list to find out whether particular language font is installed or not. In this tutorial, I will show you how to list all installed fonts and also how to list installed fonts for a particular language…
-
How to get / list out installed PHP extension in Linux OSLinux widely uses operating system in the server side and client side. Operating system provides flexible options to install our custom packages and extensions based on our project requirement. Additionally, we can write our own shell scripts to automate our projects. PHP is used mainly in server-side application software along with various…
-
How to check PERL hash is empty or notTo check given Perl Hash contains a value or not: Check by fetching keys from the hash: if(keys %myhash) { print "Values exist"; } else { print "Values not exist"; } keys, in scalar context returns the number of keys in the hash. Check by using a hash in scalar…
cal - How to get monthly and yearly calendar in LinuxThe "cal" command displays a simple calendar with Linux / UNIX date and time. If no argument passed, then the current month is displayed. Month can specified as a number from 1 to 12. "cal" command without argument to get monthly calendar: Monthly calendar "cal" command with argument to get…
How to split key value pair string to hash in PerlPerl is highly advanced programming language in order to process with strings. In this article, I have explained about the simplest way to split the key value pair string to Perl hash. Source code for split key value pair string to hash use warnings; use strict; use Data::Dumper; ### Sample input…
-
cd command in Linux / Unix'cd' is a Linux command to change the current working directory or folder of the terminal (Shell). Syntax: # cd [directory / folder name] cd: cd [-L|[-P [-e]]] [dir] Change the shell working directory. Change the current directory to DIR. The default DIR is the value of the…
-
How to move a file in Perl (File::Copy)How to move a file in Perl? Methods “move” or “mv” implemented in the module “File::Copy” can be used. Both are able to move a file to a different filesystem or disk, by first making a copy, and then deleting the original file. The different between them is in that…
Converting date to epoch timestamp in Perl: str2time, strptimeUse Date::Parse to convert normal date string to epoch timestamp. Date::Parse provides two routines for parsing date strings into time values. str2time(DATE [, ZONE]) str2time parses DATE and returns a unix time value, or undef upon failure. ZONE, if given, specifies the timezone to assume when parsing if the date…
Linux finding largest files in directory recursively - find,sort,headLinux Find command is used to search and locate the list of files and directories based on conditions you specify that match the arguments. The procedure to find the largest files in a directory recursively using find command is as follows: Open the terminal applicationLogin as the root user using…