Welcome, guest | Sign In | My Account | Store | Cart

Additional Perl modules are installed on the server (aside from the standard libraries) run from a web broswer.

Perl, 12 lines
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
<!--#include virtual="/directory/included.html" -->
# script to find installed modules
#!/var/www/cgi-bin/perl/bin:perl.exe
use ExtUtils::Installed;

# set the http header as html
print "Content-type: text/html\n\n";

my $inst = ExtUtils::Installed->new();
my @modules = $inst->modules();

print join "<br>", @modules;
Created by Roger Mbiama Assogo on Fri, 17 Jul 2015 (Apache)
Perl recipes (17)
Roger Mbiama Assogo's recipes (3)

Required Modules

  • (none specified)

Other Information and Tasks