码迷,mamicode.com
首页 > 其他好文 > 详细

find命令的一点妙用

时间:2017-02-17 15:45:10      阅读:123      评论:0      收藏:0      [点我收藏+]

标签: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命令的一点妙用

标签:find   一点   

原文地址:http://zhaoxiaolong.blog.51cto.com/9134845/1898733

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!