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

linux查找xxx天未访问的文件列表

find . -atime 365 -exec ls -lu {} \;

?

查找365天未访问的文件列表

atime表示访问时间

mtime表示修改时间