##
undef $/; # Enables whole file mode
open (FH, $filename); # Opens the file
while() { # Contains the whole file
blah
}
## ##
{
undef local $/;
open (FH, $filename);
while() {
blah
}
}