O Find tem sua própria opção -delete
, então
find /home -type f -size +100M -delete
deve fazer o que quiser. Apenas tenha cuidado sobre onde você coloca a opção -delete
Warnings: Don’t forget that the find command line is evaluated as an expression, so putting -delete first will make find try to delete everything below the starting points you specified.
Se você quiser testar isso antes de usá-lo, será necessário adicionar -depth
como -delete
.
find /home -type f -size +100M -depth