2014년 12월 31일보다 오래된 Linux 서버의 모든 파일을 나열하고 싶습니다.

2014년 12월 31일보다 오래된 Linux 서버의 모든 파일을 나열하고 싶습니다.

2014년 12월 31일 이전의 디렉터리 및 하위 디렉터리에 있는 모든 Linux 파일을 나열하고 싶습니다. 이 문제를 해결하도록 도와주세요.

답변1

find . -type f ! -newermt "31 Dec 2014"

발견됨(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

관련 정보