Showing posts with label unix recursive file deletion. Show all posts
Showing posts with label unix recursive file deletion. Show all posts

Monday, March 22, 2010

Recursive Deletion on linux filesysem

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

-- deletes all CVS directories starting from current dir.