in reply to Perl modules lister
Also, you can try this link - looks like they print the resulting list of installed modules to a web page.perl -e 'foreach $a (@INC){next if ($a eq ".");if(-d $a){@m = `nice fi +nd $a -name *.pm`;} map {s/^$a\/?(.*)\.pm$/$1/;s/\//::/g; push (@n,$_ +) if ($_!~/\.|-/);} @m; print @n;}'
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl modules lister
by revdiablo (Prior) on Apr 21, 2005 at 16:26 UTC |