in reply to Crosslink
For example, the following won't work:
It doesn't work because the kernel will be trying to find dst/src/foo when dst/bar is referenced. The symlink actually needs to be created non-intuitively as:$ mkdir src dst $ touch src/foo $ ln -s src/foo dst/bar
Perhaps if your code computed the proper relative path from an apparent relative path for symlinks, it'd be more useful.$ ln -s ../src/foo dst/bar
-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: •Re: Crosslink
by BrentDax (Hermit) on Feb 02, 2004 at 15:04 UTC | |
by Rich36 (Chaplain) on Feb 02, 2004 at 18:57 UTC |