4
如何覆盖/更新符号链接?
我正在尝试使用符号链接。我做了一些阅读,发现以下命令: Creation -> ln -s {/path/to/file-name} {link-name} Update -> ln -sfn {/path/to/file-name} {link-name} Deletion -> rm {link-name} 创建和删除工作正常。但是更新不起作用。执行此命令后,符号链接将无效。 我在这里和那里已经读过,不可能更新/覆盖符号链接。因此,网络上存在矛盾的信息。谁是对的?如果符号链接可以更新/覆盖,我该如何实现? 更新资料 这是我的目录结构: ~/scripts/test/ ~/scripts/test/remote_loc/ ~/scripts/test/remote_loc/site1/ ~/scripts/test/remote_loc/site1/stuff1.txt ~/scripts/test/remote_loc/site2/ ~/scripts/test/remote_loc/site2/stuff2.txt ~/scripts/test/remote_loc/site2/ ~/scripts/test/remote_loc/site3/stuff3.txt 从~/scripts/test/,当我执行时: ln -s /remote_loc/site1 test_link test_link创建了一个,我可以ls -l,但是它似乎坏了(与我在上面的问题中所说的相反)。 如何执行多目录级别的链接?
187
update
symbolic-link