| Akim,
| stenn@pogo> sh
| $ foo=`cd / 2>/dev/null`
| $ echo ,$bar,
| ,,
| $ baz=`exit nonsense 2>/dev/null`
| $ echo ,$baz,
| ,,
| $

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