> find . -type dir -name 'CVS' -print | xargs rmdir
Except the CVS directories usually have files in them, causing rmdir to
fail. You probably want to replace "rmdir" with "rm -r". The paranoid
will hold their breath while executing that command. :) And then, also,
you probably want to remove anything like .cvsignore files (if you have
em), etc. etc. All in all, "cvs export" is probably the better way to
go. As others have pointed out, the right way to go is to use only one
source control system.
/r$