2021-05-12 14:32:11
Linux連結檔案 - 操作連結檔案命令ln
2020-06-16 16:34:57
摘要:本文主要學習了在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]#
相關文章