Jeff King wrote: > On Wed, Oct 11, 2006 at 02:23:00PM +0200, Jakub Narebski wrote: > >> Can any Perl expert tell us how Perl truly solve this? What is the best >> way to dump whole [remaining] contents of file (from filehandle) to STDOUT? > > The same you would in C: read fix-sized buffers and dump them. [...] > Or you can use the File::Copy module, which is part of the standard > distribution (and I believe has been so for all perl5 versions, but I > could be wrong): And { local $/; print <$fd>; } doesn't do the right thing? -- Jakub Narebski Warsaw, Poland ShadeHawk on #git - 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