mercoledì 18 giugno 2014

How remove a kind of file recursively on Linux

I need to remove all the *.tiff files from a set of folders recursively.
The  most obvious solution
rm -Rf *.tiff
don't work.
:)

This is the solution I find:

find . -name '*.tiff' -exec rm {} \;


Nessun commento:

Posta un commento