]> git.koha-community.org Git - koha.git/blob - misc/perlmodule_ls.pl
bug 2689: Fix the checked box "manual history" and fix the "null" value of serial...
[koha.git] / misc / perlmodule_ls.pl
1 #!/usr/bin/perl
2
3 use ExtUtils::Installed;
4 my $instmod = ExtUtils::Installed->new();
5 foreach my $module ($instmod->modules()) {
6 my $version = $instmod->version($module) || "???";
7        print "$module -- $version\n";
8 }