On Mon, Sep 03, 2007 at 01:32:07PM +0200, David Kastrup wrote: > >> And if I understand the documentation correctly, then > > > >> $ mkdir foo && cd foo > >> $ cat ../x > >> x: No such file or directory > > > >> Right? > > > > correct. > > Have you tested this, or is this from reading the documentation? In > either case: brilliant, but the former would be funnier (depending on > one's sense of humor, of course). umm, thanks for the notice, i was wrong: ---- $ cat ../x this is makefile ---- the situation what triggers the 'no such file' problem is: ---- $ touch foo/Makefile $ mkdir bar $ ln -s foo/Makefile bar $ cd bar $ cat Makefile cat: Makefile: No such file or directory ---- - VMiklos