Bash scripting broken under Cygwin?

lists@m8y.org lists@m8y.org
Fri May 9 20:31:00 GMT 2003


$ 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/



More information about the Cygwin mailing list