Often the description in the documentation of a module is not quite enough, I want to see how the module is written. On any Unix-like system this does that if the module has any internal POD documentation. (Most from CPAN do.)
vi `perldoc -l Module::Name`

Replies are listed 'Best First'.
RE: Look at a module's source-code
by btrott (Parson) on Aug 05, 2000 at 05:15 UTC
    Nice. I was going to suggest, as an alternate (even though it doesn't stick you into an editor),
    % perldoc -m Module::Name
    which is valid. However, it fails when looking up something that isn't a module, like perldoc itself:
    % perldoc -m perldoc No documentation found for "perldoc".
    So... nice snippet. :)