Linux鏈接文件——管理鏈接文件的命令 摘要:本文主要學習了在Linux系統中創建鏈接文件的命令。 ln命令 ln命令用於給文件創建鏈接,是Link的縮寫。 基本語法 選項說明 使用舉例 ...
Linux鏈接文件——管理鏈接文件的命令
摘要:本文主要學習了在Linux系統中創建鏈接文件的命令。
ln命令
ln命令用於給文件創建鏈接,是Link的縮寫。
基本語法
1 [root@localhost ~]# ln [選項] 源文件 目標文件
選項說明
1 -s:建立軟鏈接文件。如果不加-s,則建立硬鏈接文件。如果源文件是在當前路徑下,可以使用相對路徑,否則如果不在當前路徑下,則必須寫成絕對路徑。 2 -f:強制。如果目標文件已經存在,則刪除目標文件後再建立鏈接文件。
使用舉例
1 [root@localhost home]# ls 2 hello test 3 [root@localhost home]# ln hello hello-hard 4 [root@localhost home]# ls 5 hello hello-hard test 6 [root@localhost home]# ln test test-hard 7 ln: "test": 不允許將硬鏈接指向目錄 8 [root@localhost home]# ln -s hello hello-soft 9 [root@localhost home]# ls 10 hello hello-hard hello-soft test 11 [root@localhost home]# ln -s test test-soft 12 [root@localhost home]# ls 13 hello hello-hard hello-soft test test-soft 14 [root@localhost home]#