in reply to Use Net::FTP to get a file and parse it without saving the file locally

If you want to read a file directly into your process and not save it to a file then call $ftp->retr instead of $ftp->get

This will return you a file handle that you can read from just like any other.