How to create a relative symbolic link that would always point to original folder two levels up? I would like to create a computer-independent alias that would work on any machine, provided that the original folder exists two levels up.
Basically, what I want is this:
|-- Original
|-- folder 1
|-- folder 2
|-- Original alias
I need this for my XCode project structure. I've tried:
ln -s Original /../../Original
but it creates an alias that cannot find its original folder.