find: limite de tamanho de arquivo igual mas unidade diferente retorna resultado diferente

1

Percebi que esses dois comandos para listar arquivos abaixo de 5 GiB produzem resultados diferentes:

find . -type f -size -5368709120c
find . -type f -size -5G

Especificamente, aquele que usa a unidade kilobyte ( 5368709120c ) retorna arquivos adicionais maiores que o tamanho máximo de arquivo retornado pelo que usa a unidade GiB ( 5G ).

Na página de manual find , leia o seguinte:

-size n[cwbkMG]
          File uses n units of space.  The following suffixes can be used:
          'b'    for 512-byte blocks (this is the default if no suffix is used)
          'c'    for bytes
          'w'    for two-byte words
          'k'    for Kilobytes (units of 1024 bytes)
          'M'    for Megabytes (units of 1048576 bytes)
          'G'    for Gigabytes (units of 1073741824 bytes)

The size does not count indirect blocks, but it does count blocks 
in sparse files that are not actually allocated.  Bear in mind that the '%k'
and '%b' format specifiers of -printf handle sparse files differently.   The 
'b'  suffix always denotes 512-byte blocks and never 1 Kilobyte blocks, 
which is different to the behaviour of -ls.

Portanto, considerando que a unidade de G é 1073741824, 5G deve ser 5368709120c . O problema é a contagem de blocos esparsos ou indiretos?

Agradecemos antecipadamente pela ajuda.

    
por Vince 23.08.2018 / 16:18

1 resposta

1

No meu Kubuntu man find states [meu ênfase]:

-size n[cwbkMG]
[…]
The + and - prefixes signify greater than and less than, as usual. Bear in mind that the size is rounded up to the next unit. Therefore -size -1M is not equivalent to -size -1048576c. The former only matches empty files, the latter matches files from 0 to 1,048,575 bytes.

Portanto, se um arquivo tiver mais de 4GiB e menos que (ou exatamente) 5GiB, ele se qualificará para -size 5G . Seu -size -5G não corresponderá a ele.

    
por 23.08.2018 / 16:36

Tags