I recently found it necessary to list all installed Perl modules on one of my linux servers. I wouldn't have thought that it would be as big a deal as it turned out to be. After two hours or so of testing 20 or so methods Google found for me… I settled on the following.
From the command line:
perl -MFile::Find=find -MFile::Spec::Functions -Tlwe 'find { wanted => sub { print canonpath $_ if /.pmz/ }, no_chdir => 1 }, @INC'
Popular
-
I have a hard time remembering this stuff, I'm spoiled by GUI tools. For anyone who needs it I posted some mysql cli stuff here. Nothing...
-
I found this out a while ago when looking for info on reading .DMG files on Windows or Linux boxes. Long story short, its a very painful pro...
-
sed (Stream EDitor) refers to a Unix utility for parsing text files and the programming language it uses to apply textual transformations to...
-
For all those people who did a clean install of Snow Leopard and do not want to restore any data from Time Machine, you may find manually re...