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


You need to login to view comments.