add files to CVS recursively

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

Add only new files to SVN

$ svn status | grep ^? | awk '{print $2}' | xargs svn add

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.