리눅스 n일 이내에 수정된 파일 찾기

1 개요[ | ]

수정일이 n일 이내인 파일 찾기
n일 내에 수정된 파일 찾기
지난 n일동안 변경된 파일 찾기
find 폴더 -type f -mtime -일수 -print
find 폴더 -type f -mtime -일수 -ls

2 실행예시[ | ]

[root@zetawiki ~]# find /var/log/httpd/ -type f -mtime -7 -print
/var/log/httpd/error_log-20131229
/var/log/httpd/error_log
[root@zetawiki ~]# find /var/log/httpd/ -type f -mtime -7 -ls
271564    8 -rw-r--r--   1 root     root         6321 Dec 29 12:31 /var/log/httpd/error_log-20131229
271565    8 -rw-r--r--   1 root     root         4245 Jan  2 19:53 /var/log/httpd/error_log

3 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}