Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com X-VirusChecked: Checked X-Env-Sender: jan DOT just DOT keijser AT logicacmg DOT com X-Msg-Ref: server-7.tower-36.messagelabs.com!1115134406!16894338!1 X-StarScan-Version: 5.4.15; banners=logicacmg.com,-,- Message-ID: From: Jan Just Keijser To: "'cygwin AT cygwin DOT com'" Subject: RE: echo "$(echo '\r')" oddity Date: Tue, 3 May 2005 17:33:06 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-OriginalArrivalTime: 03 May 2005 15:28:23.0765 (UTC) FILETIME=[BE900050:01C54FF4] X-IsSubscribed: yes Hi, thx for the quick answer. Lemme guess: I am going to have to build my own version of bash that does not have this behaviour... what is going to break if I undo this patch from the bash source code? It's a shame though, coz this seems to be the only issue that stops that nifty socat from working... all tests pass except those tests that use `` or $() ... Thx, JJ > -----Original Message----- > From: cygwin-owner AT cygwin DOT com > [mailto:cygwin-owner AT cygwin DOT com]On Behalf > Of Brian Dessent > Sent: Tuesday, May 03, 2005 17:31 > To: 'cygwin AT cygwin DOT com' > Subject: Re: echo "$(echo '\r')" oddity > > > Jan Just Keijser wrote: > > > I have just run into a Cygwin vs Linux oddity that I cannot > explain. I've > > managed to trace the problem back to a very simple statement: > > echo "$(echo -e '\r')" | od -x > > on my W2K Cygwin install (Cygwin1.dll 2005/04/01), this produces > > 0000000 000a > > 0000001 > > On Linux, this command produces: > > # echo "$(echo -e '\r')" | od -x > > 0000000 0a0d > > 0000002 > > (which is what I'd expect). > > Also, the Cygwin command > > echo -e '\r' | od -x > > also returns > > 0000000 0a0d > > 0000002 > > It appears that bash's handling of `` and $() is hardwired to > do \r\n -> > \n translation. I am not sure but that may be one of those > patches that > was added to bash that makes more things work than it breaks. > > ... *checks* ... > > Yes indeed: > > subst.c, function read_comsub() (which implements command > substitution) > > #ifdef __CYGWIN__ > setmode (fd, O_TEXT); /* we don't want CR/LF, we want > Unix-style */ > #endif > > Brian > > -- > 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/ > This e-mail and any attachment is for authorised use by the intended recipient(s) only. It may contain proprietary material, confidential information and/or be subject to legal privilege. It should not be copied, disclosed to, retained or used by, any other party. If you are not an intended recipient then please promptly delete this e-mail and any attachment and all copies and inform the sender. Thank you. -- 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/