首页 > 代码库 > find命令的一点妙用

find命令的一点妙用

[root@i-xrxd7zmt log]# ls | wc -l
454
[root@i-xrxd7zmt log]# find /data/clpms/log/ -maxdepth 0 -type f -mtime +0 -exec rm -f {} \;
[root@i-xrxd7zmt log]# ls | wc -l
454
[root@i-xrxd7zmt log]# find /data/clpms/log/ -xdev -type f -mtime +0 -print0 |  xargs -0r rm -f
[root@i-xrxd7zmt log]# ls | wc -l
211

find命令的一点妙用