> appro> 'a=b c=$a; echo $c' doesn't necessarily prints "b", > > I don't understand the first part of that log,
Under bash: $ a=b c=$a; echo $c b While under Solaris /bin/sh: $ a=b c=$a; echo $c i.e. it prints nothing. You need "a=b; c=$a; echo $c" to see "b." A. ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]
