in reply to Re^2: Why doesn't this print when i omit the newline?
in thread Why doesn't this print when i omit the newline?

See Data::Dumper's Useqq option, or Data::Dump:

$ perl -MData::Dumper \ -le '$Data::Dumper::Useqq=1; print Dumper("foo\r\n")' $VAR1 = "foo\r\n"; $ perl -MData::Dump=pp -le 'print pp("foo\r\n")' "foo\r\n"