in reply to Re: Perl One Liner to Check Location of a Module
in thread Perl One Liner to Check Location of a Module

Yes. We use this in a shell function defined in .bashrc:
viperl() { vi `perldoc -l $1 | sed -e 's/pod$/pm/'` }
which begins a vi session on the module in question so you can see if it has the code you thought it did.

Phil