Como eu combino '-size' e '-exec rm' no find?

1

Quando eu uso isso, funciona:

find /home -name "error_log" -exec rm -rf {} \;

Mas quando tento adicionar um limite de tamanho de arquivo, ele não remove arquivos:

find /home -size +5000000b -name "error_log" -exec rm -rf {} \;

Alguma idéia de como obter o limite de tamanho para trabalhar com isso?

    
por Charles Yarbrough 21.11.2015 / 03:55

1 resposta

3

-size com um sufixo de b é para blocos de 512 bytes, não bytes. 5000000b é 2,560,000,000 bytes ou 2,5 GB

Tente:

find /home -size +5M -name "error_log" -exec rm -rf {} \;

Na página de manual do GNU find:

-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.

    
por 21.11.2015 / 04:14

Tags