Sigh.

ULTRIX V4.4 (Rev. 69) System #31: Thu Aug 10 19:42:23 GMT 1995
UWS V4.4 (Rev. 11)
No mail.
stenn@porkypine> sh
$ foo=`cd / 2>/dev/null`
illegal io
$ echo ,$foo,
,,
$ bar=`cd /foo 2>/dev/null`
/foo: bad directory
$ echo ,$bar,
,,
$ baz=`exit nonsense 2>/dev/null`
nonsense: bad number
$ echo ,$baz,
,,
$ exit nonsense
nonsense: bad number
$

Harlan

> Thanks, but you skipped the most important tests :)
> 
> Could you try all of these?
> 
> foo=`cd / 2>/dev/null`
> echo ,$foo,
> 
> bar=`cd /foo 2>/dev/null`
> echo ,$bar,
> 
> baz=`exit nonsense 2>/dev/null`
> echo ,$baz,
> 
> exit nonsense
> 

Reply via email to