在同一文件夹下创建符号链接

在同一文件夹下创建符号链接
test
---> First
------> Inside-First
----------> Cool1
---> Second
------> Inside-Second
----------> Cool2

我想在 Inside-First 和 Inside-Second 文件夹之间创建一个符号链接,如何实现此目的?

答案1

像这样:

ln -sv ./test/First/Inside-First ./test/Second/Inside-Second/new_symlink

相关内容