Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
package Net::MyFTP;
use Net::FTP;
@ISA = ("Net::FTP");
sub MyGET {
my $ftp = shift;
my($remote,$local,$where) = @_;
# log all access to stdout
print "FTP - $remote";
ftp->get($remote,$local,$where);
return 1;
}