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]#
相关推荐
chenchuang 2020-03-05
fenxinzi 2020-01-11
willowwgx 2020-01-05
csdnyasin 2019-12-21
GeorgeTH 2019-12-18
lizzysnow 2019-11-17
seacover 2015-08-14
waterhorse 2019-08-02
涅磐 2018-02-18
chenying 2019-08-04
zhongzhiwei 2016-11-25
zhongcanw 2016-11-23
宁静致远 2014-01-24
大孩爱小孩 2013-04-03
chenchuang 2011-11-09
yangliuhepanpan 2011-08-09