感谢支持
我们一直在努力

Linux链接文件 – 操作链接文件命令ln

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

ln命令

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

基本语法

[root@localhost ~]# 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]#

更多Linux命令相关信息见Linux命令大全 专题页面 https://www.linuxidc.com/topicnews.aspx?tid=16

本文永久更新链接地址:https://www.linuxidc.com/Linux/2019-07/159300.htm

赞(0) 打赏
转载请注明出处:服务器评测 » Linux链接文件 – 操作链接文件命令ln
分享到: 更多 (0)

听说打赏我的人,都进福布斯排行榜啦!

支付宝扫一扫打赏

微信扫一扫打赏