When I do this
print >>file, "\n"
This actually writes a "\r\n" on my Windows machine. How do I write only the "\n" char and not the "\r"?
When I do this
print >>file, "\n"
This actually writes a "\r\n" on my Windows machine. How do I write only the "\n" char and not the "\r"?