Archive for April, 2008

Recursively add files to CVS

Tagged: Programming Date: 4th, April 2008

Linux 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

  • Leave Comment
  • Read Comments (1)