/ Published in: Bash
This command will recursively delete all the CVS files in the current directory.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
find . -depth -name 'CVS' -exec rm -rf '{}' \; -print