ln 参数 源文件 目标链接文件
-s:代表新建一个软链接,又称符号链接;
eg. ln -s /mnt/d/Documents/source.xlsx target.xlsx
1、目标文件的后缀名一定要源文件的相同,否则双击打开目标链接文件时,会报错:
2、建立软链接时,最好需要使用绝对路径。
一开始我是这么建立的: ~/Documents$ ln -s todoUbuntu.txt ../Desktop/todoLink
发现桌面上确实生成了一个软链接,但是打开发现无法链接到目标文件。
于是尝试使用绝对路径链接: ~/Documents$ ln -s ~/Documents/todoUbuntu.txt ~/Desktop/todoLink
成功。