On Mon, Mar 04, 2002 at 12:07:30PM +0900, Antony Stace wrote: > > if [ $iexportflag = "yes" ] ; then > > you might want to try using "==" (equality check) instead of "="(assignment)
no you most certainly don't. == is a bash extension and will not (necessarily) work under other POSIX shells. i have sh -> ash, and this is one of the most common errors script writers make. -- - Gus -- SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/ More Info: http://lists.slug.org.au/listinfo/slug
