Hello,
If I
print FILE "\n";
the file contains:
0000000: 0d0a
If I
print FILE "\x0A";
the file contains:
0000000: 0d0a
Is there no way to fool it into printing a UNIX compatible file? Most applications don't care these days but I have a legacy app that does.
Thanks, systom
Found 'binmode' - fixes the problem.