in reply to i want to go through the code of Net::Ftp module in perl

If you want to see where it's located, you can do:

perldoc -l Net::FTP

And if you prefer paging around the module in, say, vi or vim, you can do something like:

vi `perldoc -l Net::FTP`


--chargrill
s**lil*; $*=join'',sort split q**; s;.*;grr; &&s+(.(.)).+$2$1+; $; = qq-$_-;s,.*,ahc,;$,.=chop for split q,,,reverse;print for($,,$;,$*,$/)

Replies are listed 'Best First'.
Re^2: i want to go through the code of Net::Ftp module in perl
by Hue-Bond (Priest) on Oct 11, 2006 at 08:16 UTC

    Interesting. The immediate bash evolution to that is:

    function pmvi { vi $(perldoc -l "$@"); }

    It even works with more than one module at a time (because perldoc -l does, of course).

    --
    David Serrano