how to find path up to installled modules @ sun solaris box
how to find path up to installled modules [at] sun solaris box
--
To unsubscribe, e-mail: beginners-unsubscribe [at] perl.org
For additional commands, e-mail: beginners-help [at] perl.org
http://learn.perl.org/
Re: how to find path up to installled modules @ sun solaris box
On 8/10/10 Tue Aug 10, 2010 4:37 AM, "ojha.lalit [at] gmail.com"
<ojha.lalit [at] gmail.com> scribbled:
> how to find path up to installled modules [at] sun solaris box
>
'perl -V' will show the default search paths for installed modules.
'perldoc -l Some::Module' will show where Some::Module is installed.
--
To unsubscribe, e-mail: beginners-unsubscribe [at] perl.org
For additional commands, e-mail: beginners-help [at] perl.org
http://learn.perl.org/
Re: how to find path up to installled modules @ sun solaris box
--0016364ed22008f84d048d870dfc
Content-Type: text/plain; charset=UTF-8
Try this one
perl -MFile::Find=find -MFile::Spec::Functions -lwe 'find { wanted => sub {
print canonpath $_ if /\.pm\z/ }, no_chdir => 1 }, [at] INC'
On Tue, Aug 10, 2010 at 5:07 PM, ojha.lalit [at] gmail.com
<ojha.lalit [at] gmail.com>wrote:
> how to find path up to installled modules [at] sun solaris box
>
>
> --
> To unsubscribe, e-mail: beginners-unsubscribe [at] perl.org
> For additional commands, e-mail: beginners-help [at] perl.org
> http://learn.perl.org/
>
>
>
--0016364ed22008f84d048d870dfc--