- or download this
$ftp = Net::FTP->new($destserv) || die "error connecting\n";
$ftp->login($destuser,$destpass);
$ftp->binary();
$ftp->put(*STDIN,$remotefile) or die "error uploading\n";
$ftp->quit();
- or download this
my $data="FOOBAR";
...
$ftp->binary();
$ftp->put(*FOO,"remotelogfile") or die "error uploading\n";
$ftp->quit();
- or download this
while (<FOO>){print $_;}
print FOO "hi";