On Monday 26 November 2007, Jasper Lievisse Adriaanse wrote: > > In the case of Digest::MD5, is there a simple way to get our base > > perl to dump out a list of existing modules? > > > > devel/p5-Module-CoreList ? >
The p5-Module-CoreList generally lets you know what module versions were available for a particular perl version, rather than what is installed by default. This is one way to get everything that is installed. $ find `perl -e 'print "@INC";'` -name "*.pm" -print The stuff in /usr/libdata is part of the default OpenBSD install, but I think that only holds true if CPAN has never been used. If you use CPAN, even once, then there is no way of telling what was part of the default OpenBSD install and what was added else-wise. JCR
