"리눅스 n일 이내에 수정된 파일 찾기"의 두 판 사이의 차이

 
(다른 사용자 한 명의 중간 판 3개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
;수정일이 n일 이내인 파일 찾기
;수정일이 n일 이내인 파일 찾기
;n일 내에 수정된 파일 찾기
;n일 내에 수정된 파일 찾기
;지난 n일동안 변경된 파일 찾기
;지난 n일동안 변경된 파일 찾기


==명령어==
<source lang='bash'>
<source lang='bash'>
find 폴더 -type f -mtime -일수 -print
find 폴더 -type f -mtime -일수 -print
12번째 줄: 12번째 줄:


==실행예시==
==실행예시==
<source lang='dos'>
<source lang='console'>
[root@jmnote ~]# find /var/log/httpd/ -type f -mtime -7 -print
[root@zetawiki ~]# find /var/log/httpd/ -type f -mtime -7 -print
/var/log/httpd/error_log-20131229
/var/log/httpd/error_log-20131229
/var/log/httpd/error_log
/var/log/httpd/error_log
</source>
</source>
<source lang='dos'>
<source lang='console'>
[root@jmnote ~]# find /var/log/httpd/ -type f -mtime -7 -ls
[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
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
271565    8 -rw-r--r--  1 root    root        4245 Jan  2 19:53 /var/log/httpd/error_log

2016년 5월 24일 (화) 13:41 기준 최신판

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 }}