cvs locating
// description of your code here
find . -type d -print|grep -v CVS|xargs cvs add find . -type f -print|grep -v CVS|xargs cvs add find . -type f -print0|xargs -0 cvs add add root dir to repo cvs add examples/ find . -type d -name \*|xargs cvs add do same for files(add files): find . -type f -name \*|grep -v CVS|xargs cvs add commit changes