ln

命令描述

软链接 类似 与 win 的快捷方式

参数

-s

案例一:设置文件软链接

[root@localhost /]# ln -s 1.txt  2.txt[root@localhost /]# ls !$[root@localhost /]# ll !$ll 2.txtlrwxrwxrwx. 1 root root 5 12月 18 21:52 2.txt -> 1.txt[root@localhost /]#

案例二:设置目录软链接

[root@localhost /]# lsattr AAA---------------- AAA/BBB[root@localhost /]# ln -s AAA BBB[root@localhost /]# ll BBBlrwxrwxrwx. 1 root root 3 12月 18 21:53 BBB -> AAA[root@localhost /]#