/ Published in: Bash
This command will recursively delete all the CVS files in the current directory.
Expand |
Embed | Plain Text
find . -depth -name 'CVS' -exec rm -rf '{}' \; -print
Comments
Subscribe to comments
You need to login to post a comment.

Works like a charm! Thanks :)