Bunu yapabilirim:
$ pwd
/home/beau
$ ln -s /home/beau/foo/bar.txt /home/beau/bar.txt
$ readlink -f bar.txt
/home/beau/foo/bar.txt
Ancak bunu yapabilmek istiyorum:
$ pwd
/home/beau
$ cd foo
$ ln -s bar.txt /home/beau/bar.txt
$ readlink -f /home/beau/bar.txt
/home/beau/foo/bar.txt
Mümkün mü? Göreceli yol adını bir şekilde çözüp iletebilir miyim ln
?
ln -s $(pwd)/bar.txt ~/
veya bir yükleme komut dosyası ekleyin.
ln -s foo/bar.txt /home/beau/bar.txt