touch和mkdir建的文档文件,用find后用绝对路径root删除不掉mkdir建立的文件,但是touch可以删除掉,但是用(.)可以删除掉,为什么呢
[root@localhost ~]# touch qz
[root@localhost ~]# mkdir qa
[root@localhost ~]# ls
qa qz install.org
[root@localhost ~]# find /root -name qz -exec rm -rf {} \;
[root@localhost ~]# ls
qa install.org
[root@localhost ~]# find /root -name qa -exec rm -rf {} \;
find: “/root/qa”: 没有那个文件或目录
[root@localhost ~]# find . -name qa -exec rm -rf {} \;
[root@localhost ~]# ls
install.org