Until I installed windows XP SP2 I was able to create a carriage return line feed as follows:
print FH "This is a line\r\n";
I also tried
my $crlf="\015\012"; print FH "This is a line",$crlf;
But when I open this up in Crimson Editor it looks like the \n is not getting interpreted as a line feed. At least there are unknown characters at the end of each line. Does anyone know what happeded in Windows XP SP2 that could have caused this. I found the following reference to a telnet bug that was supposedly addressed in SP2 Here. Is this the culprit? Any ideas on how to resolve this issue?

In reply to CRLF and Windows XP SP2 by slloyd

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.