日期:2014-05-16  浏览次数:20701 次

Linux删除X天之内的所有html文件

find ./ -name '*.html' -mtime -X -exec rm -f {} \;

?

X为天数