- Recursively add files and foldes into CVS
find . -type d -print | grep -v CVS | xargs -n1 cvs add
- Delete “.svn” files from current folder
find . -type f -exec echo \"{}\" \; | grep ".svn" | xargs rm
Anything that interests me
find . -type d -print | grep -v CVS | xargs -n1 cvs add
find . -type f -exec echo \"{}\" \; | grep ".svn" | xargs rm
Leave a Reply