1 개요[ | ]
- 수정일이 n일 이내인 파일 찾기
- n일 내에 수정된 파일 찾기
- 지난 n일동안 변경된 파일 찾기
Bash
Copy
find 폴더 -type f -mtime -일수 -print
Bash
Copy
find 폴더 -type f -mtime -일수 -ls
2 실행예시[ | ]
Console
Copy
[root@zetawiki ~]# find /var/log/httpd/ -type f -mtime -7 -print
/var/log/httpd/error_log-20131229
/var/log/httpd/error_log
Console
Copy
[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 같이 보기[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.