zhihua li wrote: > hi netters, > > I've a question about installed modules in perl. To get an idea as to > weather or not a specific module (say A.pm) is present in my perl I > can search if there's a A.pm in the directories specified by @INC. But > isn't there an easier way? Can I browse or even search through all the > modules already installed in perl directly instead of do the search? > > Thank you very much! > > > An easy way.
perldoc -m The::Module::You::Want; or perl -e "use The::Module::You::Want"; you 'll notice if the module is installed or not for the outcome result. HTH, Mug -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>