use IO::File;$filehandle = new IO::File;$filehandle->open("$text = "";until ($filehandle->eof) { $filehandle->read($newtext, 1); $text .= $newtext;}print $text;$filehandle->close;