On Wed, Jun 08, 2011 at 06:15:15PM +0200, Jérémie NIKAES wrote:
2011/6/8 Matthieu Moy [off-list ref]:
quoted
there should probably have been a $/ = 1; or some other perl magic to
make sure we don't read only the first line there:
Yes, it indeed currently reads only the first line. I'm going to see
what kind of magic I need to use.
You need to set $/ to undef. Use "local" to prevent it from polluting
other parts of the code, like:
my $var = do { local $/; <$handle> };
-Peff