当前位置:网站首页>Delete soft link

Delete soft link

2022-06-13 09:19:00 IChen.

1, Build soft links

ln -s Source file Target file

for example :ln -s /usr/hb/ /home/hb_link

2, Delete soft links

The right is :rm -rf hb_link

The wrong is :rm -rf hb_link/ This will delete the whole directory

remarks : To delete a linked file, use the following command rm /home/hb_link It's just one less “ / ” Delete the Is a linked file , That is, don't add... At the end of the file /

原网站

版权声明
本文为[IChen.]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/164/202206130918452610.html