find 명령의 "초기화 시간"은 무엇입니까?

find 명령의 "초기화 시간"은 무엇입니까?

find 명령에 대한 매뉴얼 페이지를 참조하려고 하면 다음과 같은 문제가 발생합니다.

-mmin n
        The value of n can be one of the following:
          n
               Evaluates as True if the file modification time subtracted from the initialization time, divided by 60 seconds (with any remainder discarded), is
               n.
          -n
               Evaluates as True if the file modification time subtracted from the initialization time, divided by 60 seconds (with any remainder discarded), is
               less than n.
          +n
               Evaluates as True if the file modification time subtracted from the initialization time, divided by 60 seconds (with any remainder discarded), is
               greater than n (in case of UNIX03, greater than n+1).
        Note: Files modified after the find command start time will not be taken into account. However, when the find command is used within the unary NOT
        operator for non-UNIX03 behavior, the files modified after the command start time will be displayed until the value of n.
   -mtime n
        The value of n can be one of the following:
          n
               Evaluates as True if the file modification time subtracted from the initialization time, divided by 86400 seconds (with any remainder discarded),
               is n. 86400 seconds is 24 hours.
          -n
               Evaluates as True if the file modification time subtracted from the initialization time, divided by 86400 seconds (with any remainder discarded),
               is less than n.
          +n
               Evaluates as True if the file modification time subtracted from the initialization time, divided by 86400 seconds (with any remainder discarded),

이 초기화 시간은 얼마입니까? 지금이 find 명령이 호출되는 시점인가요?

답변1

예. "초기화 시간"은 find명령이 시작된 후 파일이 처리되기 전의 특정 시간입니다. 이는 파일 순회 순서에 따라 달라지는 시간 기반 비교 결과를 피하기 위한 일반적인 시간 출처입니다.

"초기화 시간"은 이 문서에서 사용된 용어입니다.POSIX 사양.FreeBSD그것을 "시간이 find시작된다"라고 부르세요. GNU와 Solaris는 이를 문서화하지 않지만 시간 출처도 사용합니다.

답변2

이 옵션을 사용하여 하루의 시작(00:00)을 나타내지 않는 한 시간 오프셋은 현재를 기준으로 합니다.

관련 정보