This is the mail archive of the cygwin@sources.redhat.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: CR/LF translation



A text file created by Notepad will always have the CR at the end of
the line.  This is the "normal" DOS text format.

Use "cat -v" to actually *see* the CRs as printable characters.  "od
-c foo" will also show you exactly which characters are in your file
(`foo' in the example).

MSVC will *always* treat a file as DOS text unless specified otherwise
(so it eats CRs).  I'm not sure how to change stdin to binary with
MSVC.  With Cygwin, you should be able to do setmode(0,O_BINARY).

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]