Re: Creating SymLinks with relative paths

2007-11-06 Thread yvesforkl
Andrew Goktepe wrote: > > The symlink task (http://ant.apache.org/manual/OptionalTasks/symlink.html) > can be used to create symbolic links with relative paths on a per-file > basis [...] > Thank you for this hint, once again I see that most of what needs to be done is fairly easy with ant. I

Creating SymLinks with relative paths

2007-11-05 Thread yvesforkl
Creating SymLinks with relative paths shouldn't be too hard for ant. However, I can't figure out the right way to do it. Using bash commands, I'd do cd dir_b ln -s ../../dir_a/*.xml . yielding symbolic links within dir_b that look like ../../dir_a/file1.xml etc. What is the equivalent of this