linux下刪除軟連線

lm_y發表於2017-08-04

Linux環境下建立和刪除軟連結

ln -s /home/zhenwx/htccode-v1/    /home/zhenwx/htccode       建立/home/zhenwx/htccode-v1 的軟連線

 

linux下的軟連結類似於windows下的快捷方式

 

ln -s /home/zhenwx/htccode-v1/    /home/zhenwx/htccode     中的/home/zhenwx/htccode-v1/就是原始檔,/home/zhenwx/htccode      是連結檔名,其作用是當進入/home/zhenwx/htccode     目錄,實際上是連結進入了/home/zhenwx/htccode-v1/目錄

如上面的示例,當我們執行命令   cd /home/zhenwx/htccode/的時候  實際上是進入了 /home/zhenwx/htccode-v1/

 

值得注意的是執行命令的時候,應該是/home/zhenwx/htccode-v1/ 目錄已經建立,不要建立目錄/home/zhenwx/htccode/

刪除軟連結:

   rm -rf  /home/zhenwx/htccode 注意不是rm -rf  /home/zhenwx/htccode/

相關文章