use Net::FTP; $ftp = Net::FTP->new("somehost"); $ftp ->login("anonymous",'me@me.com'); $ftp->cwd("/mydir"); $ftp->get("thatFile.txt"); $ftp->quit;