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

One Response to “Recursively add files to CVS”

  1. James:

    Can u please explain how will it work?
    find . -type d -print | grep -v CVS | xargs cvs add

    I m not much aware of shell script..

    Thanks,
    jamnes

Leave a Reply