Bug 2505 - Add commented use warnings where missing in the misc/ directory
[koha.git] / misc / perlmodule_ls.pl
1 #!/usr/bin/perl
2
3 #use strict;
4 #use warnings; FIXME - Bug 2505
5
6 use ExtUtils::Installed;
7 my $instmod = ExtUtils::Installed->new();
8 foreach my $module ($instmod->modules()) {
9 my $version = $instmod->version($module) || "???";
10        print "$module -- $version\n";
11 }