Monday, March 28, 2011

Enormous check in files into cvs

Well, you can check in many files in on directory by doing this
> cvs add *
> cvs ci *

but...if you want to recursively do it...

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

find all files with type as a file (not a directory) and then exclude those files
are for CVS system, and then using xargs to execute 'cvs add' with the output after
grep.

No comments:

Post a Comment