Вопрос

By using "ln -s a b", it creates a soft-link from b to a with a relative path. If 'b' is moved to another directory, it would get broken.

Is there any way so I can create an link with an absolute path?

Это было полезно?

Решение

Simply use the full path to the link target:

ln -s /full/path/to/a b
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top