Je peux le faire:
$ pwd
/home/beau
$ ln -s /home/beau/foo/bar.txt /home/beau/bar.txt
$ readlink -f bar.txt
/home/beau/foo/bar.txt
Mais j'aimerais pouvoir faire ceci:
$ pwd
/home/beau
$ cd foo
$ ln -s bar.txt /home/beau/bar.txt
$ readlink -f /home/beau/bar.txt
/home/beau/foo/bar.txt
Est-ce possible? Puis-je en quelque sorte résoudre le chemin relatif et le transmettre ln
?
ln -s $(pwd)/bar.txt ~/
ou inclure un script d'installation.
ln -s foo/bar.txt /home/beau/bar.txt