> > if [ "$variant" == "Unicode" ]; then > > > > That is a bashism which will fail if /bin/sh is dash. Use > > [ "foo" = "bar" ] instead. > > Thanks... are there any more pitfalls like this?
[ expr -a expr ] is a pretty common "mistake". [ expr ] && [ expr ] should be used instead. (The same with OR.) */ Christoffer Sawicki <[EMAIL PROTECTED]>