El 04/11/11 13:25, Graeme Dargie escribió:
Ok this might be a bit of a newbie question but here goes.

I have a large number of directories  around 300 which all have sub dirs, some 
of those have sub dirs in each of these there are two further sub dirs called 
pages and thumbnails, is there an easy way to remove all the pages and 
thumbnail dirs from the tree?

Regards

G

I dont know how to make in one command....but to delete thumbnails directories

find . -type d -name thumbnails -exec rm -rf {} \;

You can do the same for the pages directories

To test what you will delete please run

find . -type d -name thumbnails -print

and see that it is correct
_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Reply via email to