in reply to Re: Extend a module
in thread Extend a module
use Net::FTP; sub Net::FTP::my_new_FTP_method { ... }; # your script here $ftp = Net::FTP->new("some.host.name", Debug => 0) or die "Cannot connect to some.host.name: $@"; $ftp->my_new_FTP_method;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Extend a module
by CountZero (Bishop) on Jul 07, 2009 at 11:55 UTC | |
by Anonymous Monk on Jul 07, 2009 at 11:59 UTC | |
by CountZero (Bishop) on Jul 07, 2009 at 16:25 UTC |