Recursively add files to CVS
Tagged: Programming Date: 4th, April 2008Linux shell command, recursive cvs add:
cvs -qn update | grep -v CVS | xargs cvs add
or even
find . -type d -print | grep -v CVS | xargs cvs add
find . -type f -print | grep -v CVS | xargs cvs add