摘要:本文主要學習了在Linux系統中建立連接文件的命令。學習
ln命令用於給文件建立連接,是Link的縮寫。spa
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]#