Mogę to zrobić:
$ pwd
/home/beau
$ ln -s /home/beau/foo/bar.txt /home/beau/bar.txt
$ readlink -f bar.txt
/home/beau/foo/bar.txt
Ale chciałbym móc to zrobić:
$ pwd
/home/beau
$ cd foo
$ ln -s bar.txt /home/beau/bar.txt
$ readlink -f /home/beau/bar.txt
/home/beau/foo/bar.txt
czy to możliwe? Czy mogę jakoś rozwiązać względną nazwę ścieżki i przekazać ją ln
?
ln -s $(pwd)/bar.txt ~/
lub dołącz skrypt instalacyjny.
ln -s foo/bar.txt /home/beau/bar.txt