in reply to find filesystem path of module from command line
At least that gives you a list to work from.... You can also examine the output of perldoc perllocal which will provide information about locally installed modules:% perl -le 'print for @INC' /usr/local/perllibs /usr/local/lib/perl5/5.6.1/i586-linux /usr/local/lib/perl5/5.6.1 /usr/local/lib/perl5/site_perl/5.6.1/i586-linux /usr/local/lib/perl5/site_perl/5.6.1 /usr/local/lib/perl5/site_perl .
% perldoc -t perllocal | grep -A 8 Digest::MD5 Tue Aug 28 15:29:48 2001: "Module" Digest::MD5 * "installed into: /usr/local/lib/perl5/site_perl/5.6.1" * "LINKTYPE: dynamic" * "VERSION: 2.16" * "EXE_FILES: "
-Blake
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: find filesystem path of module from command line
by Anonymous Monk on Nov 21, 2001 at 06:29 UTC | |
|
Re: Re: find filesystem path of module from command line
by Anonymous Monk on Nov 21, 2001 at 06:49 UTC |