File Perl

open (FILEHANDLE, "$text = "";
until (eof FILEHANDLE) {
    read (FILEHANDLE, $newtext, 1) 
    $text .= $newtext;
}
print $text;