Ubuntu Linux: encontre arquivos entre horários específicos?


19

Encontrei um SO chamado usando Find / Grep para pesquisar arquivos entre uma hora específica do dia

Baseado nisso e em um Unix SE chamado Grep command para encontrar arquivos que contenham texto e movê-los, eu acabei com:

find . -type f -mtime -20 | grep -v -e " \(0[012345]\|18\|19\|2[0123]\)" | xargs mv -t daytime/

Mas está movendo TODOS os arquivos. Faz diferença que eu estou usando o Ubuntu?

Tudo o que eu quero fazer é mover todos os arquivos entre 6h e 18h para outro diretório. Todas as sugestões serão apreciadas.

Respostas:


32

Na verdade, findjá possui esta funcionalidade:

find . -newermt "2013-01-01 00:00:00" ! -newermt "2013-01-02 00:00:00"

Na página de manual:

-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

       Some combinations are invalid; for example, it is invalid for  X
       to  be t.  Some combinations are not implemented on all systems;
       for example B is not supported on all systems.  If an invalid or
       unsupported  combination  of  XY  is  specified,  a  fatal error
       results.  Time specifications are interpreted as for  the  argu‐
       ment  to the -d option of GNU date.  If you try to use the birth
       time of a reference file, and the birth time  cannot  be  deter‐
       mined,  a  fatal  error  message results.  If you specify a test
       which refers to the birth time of  files  being  examined,  this
       test will fail for any files where the birth time is unknown.

Obrigado @msdl, eu não percebi isso. Parece atuar apenas na data de hoje quando der "08:00:00" sem a data, portanto parece que precisa de um dia de cada vez. Mas isso vai me fazer - obrigado!
Digitaltoast

Então, como posso imprimir esses arquivos no terminal? Eu tentei este comando, mas ele não imprimiu nada para mim!
Kulasangar
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.