Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@cygwin.com Mail-Followup-To: cygwin@cygwin.com Delivered-To: mailing list cygwin@cygwin.com Date: Fri, 9 May 2003 16:31:06 -0400 (EDT) From: lists@m8y.org X-X-Sender: nemo@nautilus.m8y.org To: cygwin@cygwin.com Subject: Bash scripting broken under Cygwin? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII $ cat temp.txt | while read f;do grep -A2 '$Log' $f | grep -q derek;if [ $? -eq "0" ];then echo $f;fi;done This oneliner, for example, reads a list of files, does a grep for something I'm interested in, and echos the file if found. Under Cygwin, I have verified invalid responses. It seems to be because $? is the exit status of the last command, but according to the process list, Cygwin seems to run the greps in background, at once. I've never been able to get this to happen on other unixes I've tried similar loops on. Is this supposed to be a performance inhancement? It really messes up simple scripts. Cygwin was installed on this computer back at: 2002/11/06 11:50:52 Starting cygwin install, version 2.249.2.5 Can include the full log if people want more version numbers. Thanks, Derek -- 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/