This is the mail archive of the cygwin@cygwin.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]
Other format: [Raw text]

Re: perl textmode newline problem


Peter,

Cygwin-apps is a wrong mailing list for your query.  The appropriate list
is <cygwin at cygwin dot com>.  I've redirected it there and set the
Reply-To: field correspondingly.  Please remove <cygwin-apps at cygwin dot
com> from further discussion on this topic.  Also, please search the
archives of <cygwin at cygwin dot com>, as they contain the solution to
your problem (in some recent postings).  The archives could be accessed at
<http://cygwin.com/ml/cygwin/>.
	Igor

On Thu, 4 Sep 2003, Peter Westerstrom wrote:

> I can't get perl to write files in text mode with correct line feeds.
>
> My perl program:
> #!/usr/bin/perl
> open(F, "> test.txt") or die "can't open file";
> print F "Foo\n";
> print F "Bar\n";
> close(F);
>
> Outputs newlines as 0x0A.
>
> But my C program:
> #include <cstdio>
> int main(int argc, char** argv)
> {
>         FILE *fp = fopen("test3.txt", "w");
>         fprintf(fp, "Foo\n");
>         fprintf(fp, "Bar\n");
>         fclose(fp);
>         return 0;
> }
>
> Writes newlines as 0x0D 0x0A. Same output dir.
>
> All my mounts is in textmode. CYGWIN is empty. I'm using perl 5.8.0-5
> and cygwin 1.5.3-1.
> I recently upgraded cygwin and got this behavoiur. Before it was
> correctly outputting text with 0x0D 0x0A.
>
> What can be the problem? A bug in perl? By design change in cygwin perl?
>
> Peter Westerstrom
> peterw@eonreality.se

-- 
				http://cs.nyu.edu/~pechtcha/
      |\      _,,,---,,_		pechtcha@cs.nyu.edu
ZZZzz /,`.-'`'    -.  ;-;;,_		igor@watson.ibm.com
     |,4-  ) )-,_. ,\ (  `'-'		Igor Pechtchanski, Ph.D.
    '---''(_/--'  `-'\_) fL	a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

"I have since come to realize that being between your mentor and his route
to the bathroom is a major career booster."  -- Patrick Naughton

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


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