②linux基础 软连接 ln -s

又称符号链接

[root@rstx-53 ~]# ln -s file/ file2
[root@rstx-53 ~]# ll file*
lrwxrwxrwx 1 root root 5 Mar  1 22:36 file2 -> file/
file:
[root@rstx-53 ~]# ll
drwxr-xr-x   2 root    root            6 Mar  1 22:36 file
lrwxrwxrwx   1 root    root            5 Mar  1 22:36 file2 -> file/
作用

1 目录不方便移动
2 软件升级
3 代码更新

原文地址:https://www.cnblogs.com/yangtao416/p/14466468.html