This is the mail archive of the cygwin@sourceware.cygnus.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: Strange standard out in B20


Eugene Kanter wrote:

> When I run an application (rpm.exe from Red Hat) under bash and redirect
> output to a file, I get DOS style \r\n end of lines. However if I do the
> same (rpm -qa > file.txt) under cmd.exe, only \n appears at the end of
> file, whis is not what Notepad.exe can handle. Any ideas?

I received a suggest to include

#   if defined(__WINNT__)
     setmode( 1, O_TEXT );
     setmode( 2, O_TEXT );
#   endif

in the beginning of  main() (and make sure fcntl.h is included) which did
the desired.

Thanks all.

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


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