您的当前位置:首页正文

linux创建软链接

2024-11-25 来源:个人技术集锦

软链接的作用

创建软链接

  1. 事例
ln -s test1.txt test2.txt

删除软链接

rm -rf 软链接名称

 rm -rf test2.txt

修改链接

ln -snf test3 test2

显示全文