답변:
find(1)
:
-newerXY reference
Compares the timestamp of the current file with reference. The
reference argument is normally the name of a file (and one of
its timestamps is used for the comparison) but it may also be a
string describing an absolute time. X and Y are placeholders
for other letters, and these letters select which time belonging
to how reference is used for the comparison.
a The access time of the file reference
B The birth time of the file reference
c The inode status change time of reference
m The modification time of the file reference
t reference is interpreted directly as a time
find ./ -mtime +n
모든 파일을보다 나이하는 데 사용되는 n
일이
find ./ -mtime -n
마지막으로 수정 된 모든 파일을 가져 오는 데 사용 n
일을
당신이 사용하는 경우 지금 1
의 자리에n
지난 24 시간 동안 수정, 당신은 얻을 것이다 파일을. 그러나 지난 24 시간이 아닌 어제 파일 만 원한다면 어떻게해야합니까? 여기 newermt
그림이 나온다.
find ./ -newermt "2016-01-18" ! -newermt '2016-01-19'
지정된 날짜보다 최신 인 !
모든 파일을 제공하고 지정된 날짜보다 최신 인 모든 파일을 제외합니다. 위의 명령은 2016-01-18에 수정 된 파일 목록을 제공합니다.