== same as = in cygwin bash, not in linux bash?

Tom Dorgan tdorgan@yahoo.com
Fri Apr 27 12:51:00 GMT 2001


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



More information about the Cygwin mailing list