Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT sourceware DOT cygnus DOT com Delivered-To: mailing list cygwin AT sourceware DOT cygnus DOT com Message-ID: <20000208185404.15495.qmail@web115.yahoomail.com> Date: Tue, 8 Feb 2000 10:54:04 -0800 (PST) From: Earnie Boyd Reply-To: earnie_boyd AT yahoo DOT com Subject: Re: __[[__ operator in bash ? To: Jean-Paul DOT Gabrielli AT sema DOT fr, cygwin AT sourceware DOT cygnus DOT com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii --- Jean-Paul Gabrielli wrote: > Hi, > > What to put as first line (#!) to give bash the 'posix' behavior ? > I did a copy of bash under /usr/bin for portability reasons > > When I got the following script: > #!/usr/bin/sh > if [[ -d /winnt ]] ; then > echo "Found Folder!" > fi > > jpgnt-tstvsn9 > test.shl > [[: not found > jpgnt-tstvsn9 > bash test.shl > Found Folder! > This is a deficiency of the ash port named as sh.exe. You may modify it to do one of the following: 1) if [ -d /winnt ]; then 2) if test -d /winnt; then 3) fix the code for the ash port and submit the patches. Regards, ===== Earnie Boyd Cygwin Newbies, please visit __________________________________________________ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com