recursively delete CVS directories


/ Published in: Bash
Save to your folder(s)

This command will recursively delete all the CVS files in the current directory.


Copy this code and paste it in your HTML
  1. find . -depth -name 'CVS' -exec rm -rf '{}' \; -print

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.