------------------------------------------------
On Wed, 5 Mar 2003 09:36:01 -0500, "Rob" <[EMAIL PROTECTED]> wrote:

> Is there a perl command to list installed modules?
> 
> 

on Unix:

find `perl -e 'print "@INC";'` -name "*.pm" -print

Gleaned from a doc, perldoc perlmodlib.

I alias this like so (bash):

alias listperlmods="find \`perl -e 'print \"@INC\"'\` -name '*.pm' -print"


http://danconia.org

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to