borrado de archivos

Alvaro Herrera alvherre en alvh.no-ip.org
Vie Nov 9 17:37:53 CLST 2007


Jens Hardings Perl escribió:
> On Fri, 2007-11-09 at 14:21 -0300, Patricio Morales wrote:
> > Si ,pero find es para buscar archivos que tengan dicha característica
> > una vez encontrados tendrías que Borrarlos uno a uno con rm
> 
> Pero puedes pedirle a find que haga esa pega por ti:
> "find -size +5M -exec rm {} \;"
> 
> O bien usar xargs:
> "find -size +5M -print0 | xargs -0 rm"

En realidad es aun mas facil, como ya le dijeron a Patricio en otra
lista:

find . -size +5M -delete

-- 
Alvaro Herrera                          Developer, http://www.PostgreSQL.org/
Thou shalt study thy libraries and strive not to reinvent them without
cause, that thy code may be short and readable and thy days pleasant
and productive. (7th Commandment for C Programmers)


Más información sobre la lista de distribución Linux