?:在perl中, 如何知道安砚了什么的Modules?

?:在perl中, 如何知道安砚了什么的Modules?

?:在perl中, 如何知道安砚了什么的Modules?      
hmmm, sorry this machine no chinese input now.anyways...

for full list:
prompt>find `perl -e 'print "@INC"'` -name '*.pm'


for singel one:
prompt>perldoc -r "keyword"

eg: want to find Image::Magick module but dont remember       the exactly name, use perldoc -r "Magick" or perldoc "Image::Magick"

Alternatively : perl -e "use Image::Magick" will do too.