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 Message-ID: <20020909202720.31515.qmail@web12701.mail.yahoo.com> Date: Mon, 9 Sep 2002 13:27:20 -0700 (PDT) From: "Jerry D. Hedden" Subject: Re: Bug Report: bash-2.05b-4 - xit: command not found To: cygwin AT cygwin DOT com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii I'm using bash 2.05b-4 and cygwin 1.3.12-4 (i.e., the lastest versions). (I had put the version in the subject line but not in the body of the message. Sorry.) The scripts in my original message (below) consistently reproduce this bug. I even triple-checked it after getting your message. -- Original Message -- From: "Joey Bernard" Subject: Re: Bug Report: bash-2.05b-4 - xit: command not found What version of bash are you using? This works fine on my box using 2.05b. This is on cygwin 1.3.12-4. -- Original Message -- From: "Jerry D. Hedden" Subject: Bug Report: bash-2.05b-4 - xit: command not found The bug is reproducible using the following two scripts: --- Begin file 1: bug1.sh --- #!/usr/bin/bash ./bug2.sh exit --- End file 1 --- --- Begin file 2: bug2.sh --- #!/usr/bin/bash exit --- End file 2 --- Running the first script gives the following: prompt> ./bug1.sh ./bug1.sh: line 3: xit: command not found The 'e' is missing from 'exit'. If you add an extra blank line to the end of bug1.sh as follows: --- Begin file 1: bug1.sh --- #!/usr/bin/bash ./bug2.sh exit --- End file 1 --- You now get the following: prompt> ./bug1.sh ./bug1.sh: line 3: it: command not found Now the 'e' and 'x' are missing. Another blank line as follows: --- Begin file 1: bug1.sh --- #!/usr/bin/bash ./bug2.sh exit --- End file 1 --- You get: prompt> ./bug1.sh ./bug1.sh: line 3: t: command not found Only the 't' is left. If you add a third black line, you get no error most likely because all the letters in 'exit' have been 'eaten'. __________________________________________________ Do You Yahoo!? Yahoo! Finance - Get real-time stock quotes http://finance.yahoo.com -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/