> Can anyone give me a simple command that will remove all existing
> files from a repository, but not remove the repository itself?

cd /path/to/your/repository
find . -type f -print | grep -v CVSROOT | xargs rm

Reply via email to