How to add CVS files recursively?



I am using CVS to access and commit my files. How do I add my files recursively from the linux command shell into CVS?

Please help



Use the following command to recursively add files or directories to CVS:

find . -type d -print | grep -v CVS | xargs -n1 cvs add
find . -type f -print | grep -v CVS | xargs -n1 cvs add

First one to recursively add directories into CVS and second to recursively add files into CVS.