On Wed, Jun 08, 2011 at 06:15:15PM +0200, JÃrÃmie NIKAES wrote: > 2011/6/8 Matthieu Moy <Matthieu.Moy@xxxxxxxxxxxxxxx>: > > > 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 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html