autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Akim Demaille <address@hidden>] Re: Shell crash on SunOS 4.1.3


From: Harlan Stenn
Subject: Re: [Akim Demaille <address@hidden>] Re: Shell crash on SunOS 4.1.3
Date: Fri, 26 Jan 2001 21:18:32 -0500

Akim,

Here they are.

Harlan
---
> Can you try these please?  I'd like to know if the problem is with the
> assign or the substitution, etc.
> 
$ at_dir=`(cd /foo && pwd) 2>/dev/null`
$ echo at_dir=$at_dir
at_dir=
$ at_dir=`(cd /foo && pwd)` 2>/dev/null
/foo: bad directory
$ echo at_dir=$at_dir
at_dir=
$ echo `(cd /foo && pwd) 2>/dev/null`

$ echo `(cd /foo && pwd)` 2>/dev/null
/foo: bad directory

$ at_dir=`echo foo 2>/dev/null`
$ echo at_dir=$at_dir
at_dir=foo
$ at_dir=`echo foo` 2>/dev/null
$ echo at_dir=$at_dir
at_dir=foo
$ echo `echo foo 2>/dev/null`
foo
$ echo `echo foo` 2>/dev/null
foo
$



reply via email to

[Prev in Thread] Current Thread [Next in Thread]