Eu quero listar todos os arquivos no meu servidor Linux que são mais antigos que 31 de dezembro de 2014

3

Eu quero listar todos os arquivos do Linux em um diretório e subdiretórios com mais de 31 de dezembro de 2014. Por favor, me ajudem nisso.

    
por Saurabh 21.12.2015 / 20:57

1 resposta

17

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

encontre (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
    
por 21.12.2015 / 21:05