검색기간1 linux / find / 특정기간 / 검색기간 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 -newe.. 2022. 2. 14. 이전 1 다음 반응형