linux查找某个目录下改动的文件

find /www/wwwroot -mtime -2 在 /www/wwwroot下查最近两天内改动过的文件
find /www -atime -1 查1天之内被存取过的文件
find /www/wwwroot -mmin +60 在 /www/wwwroot下查60分钟前改动过的文件
find /www/wwwroot -amin +30 查最近30分钟前被存取过的文件
find /www/wwwroot -newer a.txt 在 /www/wwwroot下查更新时间比a.txt近的文件或目录
find /www/wwwroot a.txt 在 /www/wwwroot下查存取时间比a.txt近的文件或目录
find /www/wwwroot -used -2 列出文件或目录被改动过之后,在2日内被存取过的文件或目录

你可能感兴趣的:(linux,linux,服务器,运维)