open(FH,"file.txt"); while() { $var = $_; print "$var\n"; } close(FH); #### open(FH,"file.txt"); my $var; while() { $var .= $_; } close(FH);