- 마지막 access 한 시각이 60분 이상 지난 파일 찾기
>find -amin +60
- 마지막 access 한 시각이 10분 이내의 파일 찾기
>find -amin -10
- 파일 a 보다 최근에 access 된 파일 찾기
>find -anewer ./a
- 24시간 이내에 변경된 파일
>find . -type f -mtime 0 | xargs ls -al
- 최근 7일 이내에 변경된 파일
>find . -type f -mtime -7 | xargs ls -al