Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@sources.redhat.com>
List-Archive: <http://sources.redhat.com/ml/cygwin/>
List-Post: <mailto:cygwin@sources.redhat.com>
List-Help: <mailto:cygwin-help@sources.redhat.com>, <http://sources.redhat.com/ml/#faqs>
Sender: cygwin-owner@sources.redhat.com
Delivered-To: mailing list cygwin@sources.redhat.com
Message-ID: <20010427195113.1138.qmail@web3303.mail.yahoo.com>
Date: Fri, 27 Apr 2001 12:51:13 -0700 (PDT)
From: Tom Dorgan <tdorgan@yahoo.com>
Subject: == same as = in cygwin bash, not in linux bash?
To: cygwin@cygwin.com
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii

hello,

I recently backported some bash scripts developed on cygwin to linux.
to my surprise I got an interpretation error on a few of them. here's a
sample:
#!/bin/bash
if [ "$1" == "" ]; then
  while [ -z "$INSTALL_DOMAIN" ] ; do
      echo -n "Enter server web domain name: " ;
      read INSTALL_DOMAIN ;
  done
else
  INSTALL_DOMAIN="$1"
fi

this works on cygwin bash (latest fix) but gives:
t.sh: [: ==: binary operator expected 
on linux.

my Oreilly 'Learning the bash shell' book says that using == is a
common beginner mistake. I was wondering about this.....


__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/

--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

