repo.or.cz
/
koha.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bug 7815 : Order pickup libraries list by name rather than by code
[koha.git]
/
misc
/
perlmodule_ls.pl
blob
d381b6ee629e4e62fc3effd8e25d9c19a79990b5
1
#!/usr/bin/perl
2
3
use
strict
;
4
use
warnings
;
5
6
use
ExtUtils
::
Installed
;
7
8
my
$instmod
=
ExtUtils
::
Installed
->
new
();
9
foreach
my
$module
(
$instmod
->
modules
()) {
10
my
$version
=
$instmod
->
version
(
$module
) ||
"???"
;
11
print
"
$module
--
$version
\n
"
;
12
}