Linux链接文件——管理链接文件的命令

时间:2025-01-02 14:06:38

Linux链接文件——管理链接文件的命令

摘要:本文主要学习了在Linux系统中创建链接文件的命令。

ln命令

ln命令用于给文件创建链接,是Link的缩写。

基本语法

 ln [选项] 源文件 目标文件

选项说明

 -s:建立软链接文件。如果不加-s,则建立硬链接文件。如果源文件是在当前路径下,可以使用相对路径,否则如果不在当前路径下,则必须写成绝对路径。
-f:强制。如果目标文件已经存在,则删除目标文件后再建立链接文件。

使用举例

 [root@localhost home]# ls
hello test
[root@localhost home]# ln hello hello-hard
[root@localhost home]# ls
hello hello-hard test
[root@localhost home]# ln test test-hard
ln: "test": 不允许将硬链接指向目录
[root@localhost home]# ln -s hello hello-soft
[root@localhost home]# ls
hello hello-hard hello-soft test
[root@localhost home]# ln -s test test-soft
[root@localhost home]# ls
hello hello-hard hello-soft test test-soft
[root@localhost home]#