删除软连接和坑

原文地址:https://blog.csdn.net/dufufd/article/details/68943825

Linux下取消软连接,做个案例来说明:

1.先建立一个软连接

1
2
3
4
5
6
7
8
9
10
11
12
13
[[email protected]  test ] # ls -il
总计  0
1491138 -rw-r–r– 1 root root 48 07-14 14:17 file1
1491139 -rw-r–r– 2  root root 0 07-14 14:17 file2
1491139 -rw-r–r– 2 root root 0 07-14 14:17  file2hand
#建立file1和file1soft软连接
[[email protected]  test ] # ln -s file1  file1soft
[[email protected]  test ] # ls -il
总计 0
1491138 -rw-r–r– 1 root  root 48 07-14 14:17 file1
1491140 lrwxrwxrwx 1 root root 5 07-14 14:24  file1soft -> file1
1491139 -rw-r–r– 2 root root 0 07-14 14:17  file2
1491139 -rw-r–r– 2 root root 0 07-14 14:17 file2hand

2.删除上面建立的软连接

1
2
3
4
5
6
7
8
9
10
11
12
13
[[email protected]  test ] # ls -il
总计  0
1491138 -rw-r–r– 1 root root 0 07-14 14:17 file1
1491140 lrwxrwxrwx 1  root root 5 07-14 14:24 file1soft -> file1
1491139 -rw-r–r– 2 root root 0  07-14 14:17 file2
1491139 -rw-r–r– 2 root root 0 07-14 14:17  file2hand
#删除软连接
[[email protected]  test ] # rm -rf file1soft
[[email protected]  test ] #  ls -il
总计 0
1491138 -rw-r–r– 1 root root 0 07-14 14:17 file1
1491139  -rw-r–r– 2 root root 0 07-14 14:17 file2
1491139 -rw-r–r– 2 root root 0 07-14  14:17 file2hand



删除软链接 确实是用rm 但是!!!
rm -fr xxxx/ 加了个/ 这个是删除文件夹

rm -fr xxxx 没有/ 这个是删除软链接
这里还要注意一个问题  rm的时候不要在file1soft目录,不然会吧文件夹一起删除

你可能感兴趣的:(Linux,tools)