in reply to Re: Re: Re: How to list all the installed perl modules
in thread How to list all the installed perl modules

how about

perl -e 'sub f{$d=pop;/\.pm/&&-f$_&&print"$_\n";-d$_&&f($_)for(<$d/*>) +}f($_)for@INC'