본문 바로가기
OS/Linux

linux / find / 특정기간 / 검색기간

by 하하IT 2022. 2. 14.

1. touch 명령어로  검색기간(START ~ END)의 파일 생성

#>touch -t 202105070000 START 

#>touch -t 202105082359 END 


2. 검색기간(START ~ END)내의 파일 검색

#>find /BACKUP  -newer START -a ! -newer END -print


 3. 검색기간(START ~ END)내의 파일 검색결과 관련

 

검색결과를 파일(log.txt)로 저장
#>find /BACKUP  -newer START -a ! -newer END -print >log.txt

 

 

검색결과중 특정파일(*.txt)만 표시
#>find /BACKUP  -newer START -a ! -newer END -print | grep   .txt

 

#>find /BACKUP  -newer START -a ! -newer END -print | grep    .txt >log.txt

'OS > Linux' 카테고리의 다른 글

crontab / delete / send mail  (0) 2023.09.06
SSO / SSL / jdk.tls.disabledAlgorithms  (0) 2022.02.15
sftp / ssh / scp 포트지정접속  (0) 2021.12.28
tomcat 2개 / tomcat port 다르게 여러개  (0) 2021.06.25
rsync / ssh-keygen / ssh-copy-id  (0) 2021.06.01