in reply to Send file via FTP

What you need is to look into the Net::FTP - FTP Client class. You can put together a simple script using this Module use Net::FTP; $ftp = Net::FTP->new("some.host.name"); $ftp->login("anonymous","me@here.there"); $ftp->cwd("/pub"); $ftp->put("that.file"); $ftp->quit;