Liunx的软链接和硬链接
ln 命令 命令名称: ln 。 英文原意: make links between file 。 所在路径: /bin/ln 。 执行权限:所有用户。 功能描述:在文件之间建立链接。 ln 命令的基本格式如下: [root@localhost ~]# ln [选项] 源文件 目标文件 选项: -s: 建立软链接文件。 如果不加“-s”选项,则建立硬链接文件 -f: 强制。如果目标文件已经存在,则删除目标文件后再建立链接文件 创建硬链接: [root@topcheer opt]# ln 1.txt /tmp/2.txt [root@topcheer opt]# ls -il 1.txt /tmp/2.txt 37789174 -rw-r--r-- 2 root root 22 11月 15 14:33 1.txt 37789174 -rw-r--r-- 2 root root 22 11月 15 14:33 /tmp/2.txt [root@topcheer /]# cd /opt [root@topcheer opt]# echo sssssss >> 1.txt [root@topcheer opt]# cat 1.txt 11 22 33 44 55 EE77 sssssss [root@topcheer opt]# cat /tmp/2.txt 11 22