On Tue, Jan 3, 2012 at 11:25, Sven Strickroth <sven.strickroth@xxxxxxxxxxxxxxx> wrote: > Am 03.01.2012 11:17 schrieb Ævar Arnfjörð Bjarmason: >>> + $ret = <$fh>; >>> + $ret =~ s/[\012\015]//g; # strip \n\r, chomp does not work on all systems (i.e. windows) as expected >> >> Urm yes it does. \n in Perl is magical and doesn't mean \012 like it >> does in some languages. It means "The Platform's Native >> Newline". >> >> Which is \012 on Unix, \015\012 on Windows, and was \015 on Mac OS >> until support for it was removed. This is covered in the second >> section of "perldoc perlport". >> >> Can you show me a case where it fails, and under what environment >> exactly? Maybe it's e.g.s some Cygwin-specific peculiarity, in which >> case we could check for that platform specifically. > > I'm using msys perl (shipped with msysgit) and there just using chomp() > did not work. That's odd, what does this print: perl -MData::Dumper -MFile::Temp=tempfile -we 'my $str = "moo\015\012"; my ($fh, $name) = tempfile(); print $fh $str; close $fh; open my $in, "<", $name or die $!; my $in_str = <$in>; chomp(my $cin_str = $in_str); print "in_str:<$in_str> cin_str:<$cin_str> END\n"' And how about this: perl -MData::Dumper -MFile::Temp=tempfile -we 'my $str = "moo\015\012"; my ($fh, $name) = tempfile(); print $fh $str; close $fh; open my $in, "<:crlf", $name or die $!; my $in_str = <$in>; chomp(my $cin_str = $in_str); print "in_str:<$in_str> cin_str:<$cin_str> END\n"' It could be that there's some bug in either perl or mingw's build of perl where it won't turn on the :crlf IO layer by default. -- 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