in reply to Re: Changing CRLF in Windows to LF for UNIX
in thread Changing CRLF in Windows to LF for UNIX
I just found my problem, thanks in large part to your code. I had binmode attached to the initial (IN) file handle, but did not have it attached to the OUT handle. Adding "binmode OUT;" allows my original code to work. Thanks for the help!