X-Spam-Check-By: sourceware.org To: cygwin AT cygwin DOT com From: mwoehlke Subject: Re: bash scripts fail with bash3.1-8 Date: Wed, 04 Oct 2006 10:19:52 -0500 Lines: 44 Message-ID: References: <002101c6e702$9978f5f0$04fa080a AT CORK DOT ARRISI DOT COM> <00e501c6e705$5409f7f0$a501a8c0 AT CAM DOT ARTIMI DOT COM> <20061004100511 DOT 536596b4 AT porschberg DOT osp-dd DOT de> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.7) Gecko/20060909 Thunderbird/1.5.0.7 Mnenhy/0.7.4.0 In-Reply-To: <20061004100511.536596b4@porschberg.osp-dd.de> X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm Precedence: bulk List-Unsubscribe: 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 Thomas Porschberg wrote: > Am Tue, 3 Oct 2006 17:02:29 +0100 > schrieb "Dave Korn" : >> On 03 October 2006 16:43, Turly O'Connor wrote: >>> By way of an example as to what broke, note that in the following >>> that "cleartool" is not a cygwin tool (it's a Windows executable), >>> writing its CRLF-terminated output to Windows' stdout. >>> >>> CHECKOUTS=`cleartool lsc -all -cvi -s` # list all my checkouts >>> >>> I used to be able to do >>> >>> for one in $CHECKOUTS ; do echo $one Hello ; done >>> >>> C:/Path/To/file1 Hello >>> C:/Path/To/file2 Hello >>> >>> Now it seems that "$one" above contains the binary CR, so I get: >>> >>> Hello h/To/file1 >>> Hello h/To/file2 >>> >>> What do I need to do to get this working again? >> How about >> >> CHECKOUTS=`cleartool lsc -all -cvi -s | d2u` # list all my checkouts >> >> or >> >> for one in $((echo $CHECKOUTS | d2u)) ; do echo $one Hello ; done >> >> depending on how happy cleartool is on piping output to a cygwin >> program. > > This is exactly the problem I have with my sqlplus call. > Is there a way to solve it without introducing the d2u filter ? You could try the new shopt... but have you considered arranging for 'sqlplus' to point to a shell script that would exec 'sqlplus.exe' and pipe it through d2u? -- Matthew This message will self destruct in five millennia. -- 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/