【求助】批量删除某一目录下N天前创建的文件

【求助】批量删除某一目录下N天前创建的文件

现在想批量删除某一目录下N天前创建的文件,如何写这个脚本?越简单越好!      
It's easy. Just man find.      
1. touch -t MMDDhhmm test (时间为N天的时间)
2. find path -newer test -exec rm {} \;

试试吧。      
没懂。就算是7天吧。能否具体写出来呢??      
find -newer file
不是比file创建更晚的吗那不是把n天后的删除掉了      
[QUOTE=dearvoid]It's easy. Just man find.[/QUOTE]BZ说的队,看看find的用法就知道了,有很多种语句可以实现。
但是不知BZ为什么用英文回复?      
sometimes english is much easier than chinese       
find [path] mtime 7 -exec rm {} \;      
find [path] -mtime +7 | xargs rm      
why many people use exec to link find and rm command?I recommand xargs.