Removing cvs-folders
May 20, 2006 | 8:20 amYou can use unix find to remove cvs folders. This is how you write for cygwin
$ find . -name ‘CVS’ -exec rm -rf ‘{}’ \;
The blanks between -rf and ‘{}’ and also between ‘{}’ and \; are important for cygwin.











Recent Comments